Skip to content

Commit 9ce96a4

Browse files
committed
12.8.8 Release
1 parent 2fe513b commit 9ce96a4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

prodict/dump/_dmpbulk.p

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*********************************************************************
2-
* Copyright (C) 2000,2007,2020 by Progress Software Corporation. *
2+
* Copyright (C) 2000,2007,2020,2025 by Progress Software Corporation. *
33
* All rights reserved. Prior versions of this work may contain *
44
* portions contributed by participants of Possenet. *
55
*********************************************************************/
@@ -9,6 +9,7 @@
99
D. McMann 04/09/03 Added logic for LOB Directory
1010
fernando 12/12/07 Handle large list of tables.
1111
tmasood 06/04/20 Fix the issue with Bulk load description file.
12+
tmasood 05/27/25 Allowed dump of BLOB fields
1213
1314
*/
1415

@@ -96,7 +97,7 @@ IF INTEGER(DBVERSION("DICTDB")) > 8 THEN
9697

9798
FOR EACH _Field OF _File BY _Field._Order:
9899
IF _sys-field OR _Data-type = "recid" THEN NEXT.
99-
IF user_env[9] = 'b' AND CAN-DO("blob,clob",_Data-type) THEN NEXT.
100+
IF user_env[9] = 'b' AND CAN-DO("clob",_Data-type) THEN NEXT.
100101
PUT STREAM bulk UNFORMATTED " " _Field-name SKIP.
101102
END.
102103

0 commit comments

Comments
 (0)