Skip to content

Commit 0087047

Browse files
committed
12.2.14 Release
1 parent 16b62ba commit 0087047

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

prodict/_dctcach.p

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/*********************************************************************
2-
* Copyright (C) 2006,2008-2009,2011,2016,2021 by Progress Software Corporation.*
3-
* All rights reserved. Prior versions of this work may contain *
4-
* portions contributed by participants of Possenet. *
5-
* *
6-
********************************************************************************/
1+
/************************************************************************************
2+
* Copyright (C) 2006,2008-2009,2011,2016,2021,2023 by Progress Software Corporation.*
3+
* All rights reserved. Prior versions of this work may contain *
4+
* portions contributed by participants of Possenet. *
5+
* *
6+
*************************************************************************************/
77
/*
88
99
History: D. McMann 07/09/98 Added AND (DICTDB._File._Owner = "PUB" OR DICTDB._File._Owner = "_FOREIGN")
@@ -20,6 +20,7 @@
2020
2121
rkumar 04/13/16 CDC Support- Dont display CDC Change tables in D/L
2222
kberlia 04/06/21 Fixed data exceeding issue.
23+
tmasood 11/15/23 Reduced check value by 1000 to fix error 12371 while loading df
2324
*/
2425

2526
{ prodict/dictvar.i }
@@ -125,7 +126,7 @@ PROCEDURE addEntry:
125126
Check the size of the array to leave some room for other things
126127
as the var is compiled as undo.
127128
*/
128-
IF totlen > 24000 OR ERROR-STATUS:ERROR THEN DO:
129+
IF totlen > 23000 OR ERROR-STATUS:ERROR THEN DO:
129130
/* if an error occurred, it could be because there are too many
130131
tables, or we hit the limit on the character variable size
131132
(cache_file), so we will use a temp-table to hold the table

0 commit comments

Comments
 (0)