|
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 | +*************************************************************************************/ |
7 | 7 | /* |
8 | 8 |
|
9 | 9 | History: D. McMann 07/09/98 Added AND (DICTDB._File._Owner = "PUB" OR DICTDB._File._Owner = "_FOREIGN") |
|
20 | 20 |
|
21 | 21 | rkumar 04/13/16 CDC Support- Dont display CDC Change tables in D/L |
22 | 22 | 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 |
23 | 24 | */ |
24 | 25 |
|
25 | 26 | { prodict/dictvar.i } |
@@ -125,7 +126,7 @@ PROCEDURE addEntry: |
125 | 126 | Check the size of the array to leave some room for other things |
126 | 127 | as the var is compiled as undo. |
127 | 128 | */ |
128 | | - IF totlen > 24000 OR ERROR-STATUS:ERROR THEN DO: |
| 129 | + IF totlen > 23000 OR ERROR-STATUS:ERROR THEN DO: |
129 | 130 | /* if an error occurred, it could be because there are too many |
130 | 131 | tables, or we hit the limit on the character variable size |
131 | 132 | (cache_file), so we will use a temp-table to hold the table |
|
0 commit comments