Skip to content

Commit 0cc66e5

Browse files
committed
For 11.7.14
1 parent ddc0db0 commit 0cc66e5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
This contains the source files of the OpenEdge 11.7.13 AppBuilder, Data admin API, HTTP client, webhandlers products.
1+
This contains the source files of the OpenEdge 11.7.14 AppBuilder, Data admin API, HTTP client, webhandlers products.
22
Progress will not accept modifications to this code.
33
However, if you want to share something you develop using this code, please submit it to OpenEdge Code Share.

prodict/dump/_lodsddl.p

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*********************************************************************
2-
* Copyright (C) 2006-2017 by Progress Software Corporation. *
2+
* Copyright (C) 2006-2017,2022 by Progress Software Corporation. *
33
* All contributed by participants of Possenet. *
44
* *
55
**********************F***********************************************/
@@ -57,6 +57,7 @@
5757
rkamboj 09/30/11 Added logic for loading category field.
5858
rkamboj 09/23/13 Added support for load of partitioned table flag for _File.
5959
Added support for load of is-local index for _index.
60+
tmasood 03/24/22 Fixed the error 16621 while loading encryption details of new Index
6061
*/
6162

6263
{ prodict/dump/loaddefs.i NEW }
@@ -1102,7 +1103,7 @@ PROCEDURE addEncryptionSetting.
11021103
IF objType = "index" THEN DO:
11031104
FIND b_File WHERE drec_file = RECID(b_File).
11041105
ASSIGN cObjName = b_File._File-name + "." + widx._Index-name
1105-
objNum = widx._Idx-num. /* may be 0 if new indexx */
1106+
objNum = IF widx._Idx-num = ? THEN 0 ELSE widx._Idx-num. /* may be 0 if new indexx */
11061107
END.
11071108
ELSE DO: /* blob or clob */
11081109
FIND b_File WHERE drec_file = RECID(b_File).

0 commit comments

Comments
 (0)