We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 880af4c commit a6ff9d3Copy full SHA for a6ff9d3
sql/snowflake/SnowflakeParser.g4
@@ -3551,6 +3551,9 @@ keyword
3551
| COMMENT
3552
| ORDER
3553
| NOORDER
3554
+ | DIRECTION
3555
+ | LENGTH
3556
+ | LANGUAGE
3557
// etc
3558
;
3559
sql/snowflake/examples/create_table.sql
@@ -94,4 +94,5 @@ create or replace table tz1(i TIMESTAMPLTZ);
94
create or replace table tz2(i TIMESTAMPNTZ);
95
create or replace table tz3(i TIMESTAMPTZ);
96
CREATE TABLE TESTSEED2 (ident int IDENTITY INCREMENT 2 ORDER);
97
-CREATE TABLE TESTSEED2 (ident int IDENTITY START = 2 INCREMENT BY 1 NOORDER);
+CREATE TABLE TESTSEED2 (ident int IDENTITY START = 2 INCREMENT BY 1 NOORDER);
98
+CREATE TABLE DIRECTION (LENGTH INT,LANGUAGE INT);
0 commit comments