Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dataroaring committed Sep 18, 2024
1 parent 5b93c88 commit dad8e95
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ unsupportedOtherStatement
| LOCK TABLES (lockTable (COMMA lockTable)*)? #lockTables
| UNLOCK TABLES #unlockTables
| WARM UP (CLUSTER | COMPUTE GROUP) destination=identifier WITH
((CLUSTER | COMPUTE GROUP) source=identifier | (warmUpItem (COMMA warmUpItem)*)) FORCE? #warmUpCluster
((CLUSTER | COMPUTE GROUP) source=identifier |
(warmUpItem (COMMA warmUpItem)*)) FORCE? #warmUpCluster
| BACKUP SNAPSHOT label=multipartIdentifier TO repo=identifier
((ON | EXCLUDE) LEFT_PAREN baseTableRef (COMMA baseTableRef)* RIGHT_PAREN)?
properties=propertyClause? #backup
Expand Down Expand Up @@ -2084,6 +2085,7 @@ nonReserved
| VARIABLES
| VARIANT
| VAULT
| VAULTS
| VERBOSE
| VERSION
| VIEW
Expand Down
2 changes: 2 additions & 0 deletions fe/fe-core/src/main/cup/sql_parser.cup
Original file line number Diff line number Diff line change
Expand Up @@ -8497,6 +8497,8 @@ keyword ::=
{: RESULT = id; :}
| KW_STOP:id
{: RESULT = id; :}
| KW_GROUP:id
{: RESULT = id; :}
| KW_GROUPING:id
{: RESULT = id; :}
| KW_GROUPS:id
Expand Down

0 comments on commit dad8e95

Please sign in to comment.