Skip to content

Commit

Permalink
added support for creation and handling of sequences
Browse files Browse the repository at this point in the history
  • Loading branch information
pdesmarets committed Feb 23, 2024
1 parent 50e0ac6 commit 540e3e4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "PostgreSQL",
"version": "0.1.56",
"versionDate": "2024-01-05",
"version": "0.1.57",
"versionDate": "2024-02-23",
"author": "hackolade",
"engines": {
"hackolade": "6.1.2",
Expand Down
15 changes: 10 additions & 5 deletions properties_pane/container_level/containerLevelConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -185,36 +185,41 @@ making sure that you maintain a proper JSON format.
"propertyKeyword": "start",
"propertyType": "numeric",
"valueType": "number",
"propertyTooltip": "Allows the sequence to begin anywhere. The default starting value is minvalue for ascending sequences and maxvalue for descending ones."
"propertyTooltip": "Allows the sequence to begin anywhere. The default starting value is minvalue for ascending sequences and maxvalue for descending ones.",
"maxValue": 999999999999999
},
{
"propertyName": "Increment",
"propertyKeyword": "increment",
"propertyType": "numeric",
"valueType": "number",
"propertyTooltip": "The data type determines the default minimum and maximum values of the sequence."
"propertyTooltip": "The data type determines the default minimum and maximum values of the sequence.",
"maxValue": 999999999999999
},
{
"propertyName": "Min value",
"propertyKeyword": "minValue",
"propertyType": "numeric",
"valueType": "number",
"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."
"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.",
"maxValue": 999999999999999
},
{
"propertyName": "Max value",
"propertyKeyword": "maxValue",
"propertyType": "numeric",
"valueType": "number",
"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."
"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.",
"maxValue": 999999999999999
},
{
"propertyName": "Cache",
"propertyKeyword": "cache",
"propertyType": "numeric",
"valueType": "number",
"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",
"minValue": 1
"minValue": 1,
"maxValue": 999999999999999
},
{
"propertyName": "Cycle",
Expand Down

0 comments on commit 540e3e4

Please sign in to comment.