Skip to content

Commit bdc5f4c

Browse files
committed
12.2.12 Release
1 parent ea3e0bb commit bdc5f4c

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

prodict/dump/_dmpincr.p

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
/************************************************************************
2-
* Copyright (C) 2005-2014,2020,2022 by Progress Software Corporation. *
3-
* All rights reserved. Prior versions of this work may contain portions *
4-
* contributed by participants of Possenet. *
5-
* *
6-
*************************************************************************/
1+
/*****************************************************************************
2+
* Copyright (C) 2005-2014,2020,2022,2023 by Progress Software Corporation. *
3+
* All rights reserved. Prior versions of this work may contain portions *
4+
* contributed by participants of Possenet. *
5+
* *
6+
******************************************************************************/
77

88
/* _dmpincr.p - phase 2 of incremental .df maker
99
@@ -93,6 +93,7 @@ History:
9393
rkamboj 11/14/13 Added support to generate incremental for IS-PARTITIONED for _file and IS-LOCAL for _Index. For table partitioning feature.
9494
tmasood 12/11/20 Merge changes from 12.1
9595
tmasood 05/10/22 Changed the code to dump index mode as per the DUMP_INC_INDEXMODE value in case of Unique index only
96+
tmasood 02/02/23 Added check for blank & space comparison for CATEGORY field
9697
9798
*/
9899

@@ -1095,7 +1096,7 @@ DO ON STOP UNDO, LEAVE
10951096
j = j + 1
10961097
ddl[j] = " DUMP-NAME " + c.
10971098
RUN dctquot IN h_dmputil (DICTDB._File._category,'"',OUTPUT c).
1098-
IF COMPARE(DICTDB._File._category,"NE",DICTDB2._File._category,"RAW") THEN ASSIGN
1099+
IF COMPARE(DICTDB._File._category,"NE",DICTDB2._File._category,"RAW") AND NOT(DICTDB._File._category EQ " " AND DICTDB2._File._category EQ "") THEN ASSIGN
10991100
j = j + 1
11001101
ddl[j] = " CATEGORY " + c.
11011102
RUN dctquot IN h_dmputil (DICTDB._File._Fil-misc2[6],'"',OUTPUT c).

0 commit comments

Comments
 (0)