-
Type:
Bug
-
Status: Resolved
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: 7.2.4
-
Fix Version/s: 7.4.0
-
Component/s: Code Generator
-
Labels:None
-
Pull Request URL:
-
Compatibility:Minor
The following does not work as expected:
Index15 := INDEX(ds, {
DATA16 i15_index{XPATH('h3Index')} := ...)
}, {
RecPos
}, indexPath);
...
Index15(KEYED(i15_index[1..res + 1] = ...);
While the following works:
Index15 := INDEX(ds, {
STRING16 i15_index{XPATH('h3Index')} := ...
}, {
RecPos
}, indexPath);
...
Index15(KEYED(i15_index[1..res + 1] = ...);