Skip to content

Commit 540e3e4

Browse files
committed
added support for creation and handling of sequences
1 parent 50e0ac6 commit 540e3e4

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "PostgreSQL",
3-
"version": "0.1.56",
4-
"versionDate": "2024-01-05",
3+
"version": "0.1.57",
4+
"versionDate": "2024-02-23",
55
"author": "hackolade",
66
"engines": {
77
"hackolade": "6.1.2",

properties_pane/container_level/containerLevelConfig.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,36 +185,41 @@ making sure that you maintain a proper JSON format.
185185
"propertyKeyword": "start",
186186
"propertyType": "numeric",
187187
"valueType": "number",
188-
"propertyTooltip": "Allows the sequence to begin anywhere. The default starting value is minvalue for ascending sequences and maxvalue for descending ones."
188+
"propertyTooltip": "Allows the sequence to begin anywhere. The default starting value is minvalue for ascending sequences and maxvalue for descending ones.",
189+
"maxValue": 999999999999999
189190
},
190191
{
191192
"propertyName": "Increment",
192193
"propertyKeyword": "increment",
193194
"propertyType": "numeric",
194195
"valueType": "number",
195-
"propertyTooltip": "The data type determines the default minimum and maximum values of the sequence."
196+
"propertyTooltip": "The data type determines the default minimum and maximum values of the sequence.",
197+
"maxValue": 999999999999999
196198
},
197199
{
198200
"propertyName": "Min value",
199201
"propertyKeyword": "minValue",
200202
"propertyType": "numeric",
201203
"valueType": "number",
202-
"propertyTooltip": "Determines the minimum value a sequence can generate. If this clause is not supplied is specified, then defaults will be used. The default for an ascending sequence is 1. The default for a descending sequence is the minimum value of the data type."
204+
"propertyTooltip": "Determines the minimum value a sequence can generate. If this clause is not supplied is specified, then defaults will be used. The default for an ascending sequence is 1. The default for a descending sequence is the minimum value of the data type.",
205+
"maxValue": 999999999999999
203206
},
204207
{
205208
"propertyName": "Max value",
206209
"propertyKeyword": "maxValue",
207210
"propertyType": "numeric",
208211
"valueType": "number",
209-
"propertyTooltip": "Determines the maximum value for the sequence. If this clause is not supplied is specified, then default values will be used. The default for an ascending sequence is the maximum value of the data type. The default for a descending sequence is -1."
212+
"propertyTooltip": "Determines the maximum value for the sequence. If this clause is not supplied is specified, then default values will be used. The default for an ascending sequence is the maximum value of the data type. The default for a descending sequence is -1.",
213+
"maxValue": 999999999999999
210214
},
211215
{
212216
"propertyName": "Cache",
213217
"propertyKeyword": "cache",
214218
"propertyType": "numeric",
215219
"valueType": "number",
216220
"propertyTooltip": "specifies how many sequence numbers are to be preallocated and stored in memory for faster access. The minimum value is 1 (only one value can be generated at a time, i.e., no cache), and this is also the default",
217-
"minValue": 1
221+
"minValue": 1,
222+
"maxValue": 999999999999999
218223
},
219224
{
220225
"propertyName": "Cycle",

0 commit comments

Comments
 (0)