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 0b2492d commit 2557fd9Copy full SHA for 2557fd9
src/alasqlparser.jison
@@ -363,6 +363,8 @@ Literal
363
{ $$ = $1.toLowerCase(); }
364
| OPEN
365
366
+ | CLOSE
367
+ { $$ = $1.toLowerCase(); }
368
| error NonReserved
369
{ $$ = $2.toLowerCase() }
370
;
@@ -3195,6 +3197,7 @@ NonReserved
3195
3197
|CHARACTER_SET_NAME
3196
3198
|CHARACTER_SET_SCHEMA
3199
|CLASS_ORIGIN
3200
+ |CLOSE
3201
|COBOL
3202
|COLLATION
3203
|COLLATION_CATALOG
@@ -3472,6 +3475,7 @@ var nonReserved = ["A"
3472
3475
,"CHARACTER_SET_NAME"
3473
3476
,"CHARACTER_SET_SCHEMA"
3474
3477
,"CLASS_ORIGIN"
3478
+ ,"CLOSE"
3479
,"COBOL"
3480
,"COLLATION"
3481
,"COLLATION_CATALOG"
0 commit comments