You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!--do not remove this marker, its needed to replace info when ticket
title is updated -->
<!--jira-description-action-hidden-marker-start-->
<table>
<td>
<a href="https://hackolade.atlassian.net/browse/HCK-14707"
title="HCK-14707" target="_blank"><img alt="Emergency"
src="https://hackolade.atlassian.net/rest/api/2/universal_avatar/view/type/issuetype/avatar/10564?size=medium"
/>HCK-14707</a> [Deloitte][DB2] Add support for CACHE and ORDER identity
param in RE and FE
</td></table>
<br />
<!--jira-description-action-hidden-marker-end-->
## Content
* include new properties of `AS IDENTITY` in the FE script
* RE those properties back correctly
---------
Co-authored-by: Yevhenii Moroziuk <yevhen.moroziuk@hackolade.com>
Copy file name to clipboardExpand all lines: properties_pane/field_level/fieldLevelConfig.json
+59-1Lines changed: 59 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1016,7 +1016,6 @@ making sure that you maintain a proper JSON format.
1016
1016
"value": "decimal"
1017
1017
}
1018
1018
},
1019
-
1020
1019
{
1021
1020
"propertyName": "Default",
1022
1021
"propertyKeyword": "default",
@@ -1237,6 +1236,65 @@ making sure that you maintain a proper JSON format.
1237
1236
]
1238
1237
}
1239
1238
}
1239
+
},
1240
+
{
1241
+
"propertyName": "Cache",
1242
+
"propertyKeyword": "cache",
1243
+
"propertyTooltip": "Specify how many values of the sequence the database preallocates and keeps in memory for faster access. Specify NOCACHE to indicate that values of the sequence are not preallocated. If you omit both CACHE and NOCACHE, then the database caches 20 sequence numbers by default.",
1244
+
"propertyType": "select",
1245
+
"options": ["", "CACHE", "NO CACHE"],
1246
+
"dependency": {
1247
+
"type": "not",
1248
+
"values": {
1249
+
"type": "or",
1250
+
"values": [
1251
+
{
1252
+
"key": "generated",
1253
+
"exist": false
1254
+
},
1255
+
{
1256
+
"key": "generated",
1257
+
"value": ""
1258
+
}
1259
+
]
1260
+
}
1261
+
}
1262
+
},
1263
+
{
1264
+
"propertyName": "Cache value",
1265
+
"propertyKeyword": "cacheValue",
1266
+
"propertyType": "numeric",
1267
+
"valueType": "number",
1268
+
"propertyTooltip": "This integer value can have 28 or fewer digits. The minimum value for this parameter is 2.",
1269
+
"minValue": 2,
1270
+
"defaultValue": 20,
1271
+
"dependency": {
1272
+
"key": "cache",
1273
+
"value": "CACHE"
1274
+
}
1275
+
},
1276
+
{
1277
+
"propertyName": "Order",
1278
+
"propertyKeyword": "order",
1279
+
"propertyTooltip": "Specify ORDER to guarantee that sequence numbers are generated in order of request. Specify NO ORDER if you do not want to guarantee sequence numbers are generated in order of request.",
0 commit comments