-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
StarRocksParser.g4
3068 lines (2549 loc) · 78.6 KB
/
StarRocksParser.g4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2021-present StarRocks, Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// $antlr-format alignColons hanging, alignSemicolons hanging, alignTrailingComments true, allowShortBlocksOnASingleLine true
// $antlr-format allowShortRulesOnASingleLine false, columnLimit 150, maxEmptyLinesToKeep 1, minEmptyLines 1, reflowComments false, useTab false
parser grammar StarRocksParser;
options {
tokenVocab = StarRocksLexer;
}
sqlStatements
: singleStatement+ EOF
;
singleStatement
: (statement (SEMICOLON | EOF))
| emptyStatement
;
emptyStatement
: SEMICOLON
;
statement
// Query Statement
: queryStatement
// Database Statement
| useDatabaseStatement
| useCatalogStatement
| setCatalogStatement
| showDatabasesStatement
| alterDbQuotaStatement
| createDbStatement
| dropDbStatement
| showCreateDbStatement
| alterDatabaseRenameStatement
| recoverDbStmt
| showDataStmt
// Table Statement
| createTableStatement
| createTableAsSelectStatement
| createTableLikeStatement
| showCreateTableStatement
| dropTableStatement
| cleanTemporaryTableStatement
| recoverTableStatement
| truncateTableStatement
| showTableStatement
| descTableStatement
| showTableStatusStatement
| showColumnStatement
| refreshTableStatement
| alterTableStatement
| cancelAlterTableStatement
| showAlterStatement
| showTemporaryTablesStatement
// View Statement
| createViewStatement
| alterViewStatement
| dropViewStatement
// Partition Statement
| showPartitionsStatement
| recoverPartitionStatement
// Index Statement
| createIndexStatement
| dropIndexStatement
| showIndexStatement
// Task Statement
| submitTaskStatement
| dropTaskStatement
// Materialized View Statement
| createMaterializedViewStatement
| showMaterializedViewsStatement
| dropMaterializedViewStatement
| alterMaterializedViewStatement
| refreshMaterializedViewStatement
| cancelRefreshMaterializedViewStatement
// Catalog Statement
| createExternalCatalogStatement
| dropExternalCatalogStatement
| showCatalogsStatement
| showCreateExternalCatalogStatement
| alterCatalogStatement
// DML Statement
| insertStatement
| updateStatement
| deleteStatement
// Routine Statement
| createRoutineLoadStatement
| alterRoutineLoadStatement
| stopRoutineLoadStatement
| resumeRoutineLoadStatement
| pauseRoutineLoadStatement
| showRoutineLoadStatement
| showRoutineLoadTaskStatement
| showCreateRoutineLoadStatement
// StreamLoad Statement
| showStreamLoadStatement
// Admin Statement
| adminSetConfigStatement
| adminSetReplicaStatusStatement
| adminShowConfigStatement
| adminShowReplicaDistributionStatement
| adminShowReplicaStatusStatement
| adminRepairTableStatement
| adminCancelRepairTableStatement
| adminCheckTabletsStatement
| adminSetPartitionVersion
| killStatement
| syncStatement
| executeScriptStatement
// Cluster Management Statement
| alterSystemStatement
| cancelAlterSystemStatement
| showComputeNodesStatement
// Analyze Statement
| analyzeStatement
| dropStatsStatement
| createAnalyzeStatement
| dropAnalyzeJobStatement
| analyzeHistogramStatement
| dropHistogramStatement
| showAnalyzeStatement
| showStatsMetaStatement
| showHistogramMetaStatement
| killAnalyzeStatement
// Profile Statement
| analyzeProfileStatement
// Resource Group Statement
| createResourceGroupStatement
| dropResourceGroupStatement
| alterResourceGroupStatement
| showResourceGroupStatement
| showResourceGroupUsageStatement
// External Resource Statement
| createResourceStatement
| alterResourceStatement
| dropResourceStatement
| showResourceStatement
// UDF Statement
| showFunctionsStatement
| dropFunctionStatement
| createFunctionStatement
// Load Statement
| loadStatement
| showLoadStatement
| showLoadWarningsStatement
| cancelLoadStatement
| alterLoadStatement
// Show Statement
| showAuthorStatement
| showBackendsStatement
| showBrokerStatement
| showCharsetStatement
| showCollationStatement
| showDeleteStatement
| showDynamicPartitionStatement
| showEventsStatement
| showEnginesStatement
| showFrontendsStatement
| showPluginsStatement
| showRepositoriesStatement
| showOpenTableStatement
| showPrivilegesStatement
| showProcedureStatement
| showProcStatement
| showProcesslistStatement
| showProfilelistStatement
| showRunningQueriesStatement
| showStatusStatement
| showTabletStatement
| showTransactionStatement
| showTriggersStatement
| showUserPropertyStatement
| showVariablesStatement
| showWarningStatement
| helpStatement
// authz Statement
| createUserStatement
| dropUserStatement
| alterUserStatement
| showUserStatement
| showAuthenticationStatement
| executeAsStatement
| createRoleStatement
| alterRoleStatement
| dropRoleStatement
| showRolesStatement
| grantRoleStatement
| revokeRoleStatement
| setRoleStatement
| setDefaultRoleStatement
| grantPrivilegeStatement
| revokePrivilegeStatement
| showGrantsStatement
// Backup Restore Statement
| backupStatement
| cancelBackupStatement
| showBackupStatement
| restoreStatement
| cancelRestoreStatement
| showRestoreStatement
| showSnapshotStatement
| createRepositoryStatement
| dropRepositoryStatement
// Sql BlackList And WhiteList Statement
| addSqlBlackListStatement
| delSqlBlackListStatement
| showSqlBlackListStatement
| showWhiteListStatement
// Backend BlackList
| addBackendBlackListStatement
| delBackendBlackListStatement
| showBackendBlackListStatement
// Data Cache management statement
| createDataCacheRuleStatement
| showDataCacheRulesStatement
| dropDataCacheRuleStatement
| clearDataCacheRulesStatement
| dataCacheSelectStatement
// Export Statement
| exportStatement
| cancelExportStatement
| showExportStatement
// Plugin Statement
| installPluginStatement
| uninstallPluginStatement
// File Statement
| createFileStatement
| dropFileStatement
| showSmallFilesStatement
// Set Statement
| setStatement
| setUserPropertyStatement
// Storage Volume Statement
| createStorageVolumeStatement
| alterStorageVolumeStatement
| dropStorageVolumeStatement
| showStorageVolumesStatement
| descStorageVolumeStatement
| setDefaultStorageVolumeStatement
// Pipe Statement
| createPipeStatement
| dropPipeStatement
| alterPipeStatement
| showPipeStatement
| descPipeStatement
// Compaction Statement
| cancelCompactionStatement
// FailPoint Statement
| updateFailPointStatusStatement
| showFailPointStatement
// prepare_stmt
| prepareStatement
| executeStatement
| deallocateStatement
// Dictionary Statement
| createDictionaryStatement
| dropDictionaryStatement
| refreshDictionaryStatement
| showDictionaryStatement
| cancelRefreshDictionaryStatement
// Unsupported Statement
| unsupportedStatement
;
// ---------------------------------------- DataBase Statement ---------------------------------------------------------
useDatabaseStatement
: USE qualifiedName
;
useCatalogStatement
: USE string_
;
setCatalogStatement
: SET CATALOG identifierOrString
;
showDatabasesStatement
: SHOW DATABASES ((FROM | IN) catalog = qualifiedName)? (
(LIKE pattern = string_)
| (WHERE expression)
)?
| SHOW SCHEMAS ((LIKE pattern = string_) | (WHERE expression))?
;
alterDbQuotaStatement
: ALTER DATABASE identifier SET DATA QUOTA identifier
| ALTER DATABASE identifier SET REPLICA QUOTA INTEGER_VALUE
;
createDbStatement
: CREATE (DATABASE | SCHEMA) (IF NOT EXISTS)? (catalog = identifier DOT)? database = identifier charsetDesc? collateDesc? properties?
;
dropDbStatement
: DROP (DATABASE | SCHEMA) (IF EXISTS)? (catalog = identifier DOT)? database = identifier FORCE?
;
showCreateDbStatement
: SHOW CREATE (DATABASE | SCHEMA) identifier
;
alterDatabaseRenameStatement
: ALTER DATABASE identifier RENAME identifier
;
recoverDbStmt
: RECOVER (DATABASE | SCHEMA) identifier
;
showDataStmt
: SHOW DATA
| SHOW DATA FROM qualifiedName
;
// ------------------------------------------- Table Statement ---------------------------------------------------------
createTableStatement
: CREATE (TEMPORARY | EXTERNAL)? TABLE (IF NOT EXISTS)? qualifiedName LEFT_PAREN columnDesc (
COMMA columnDesc
)* (COMMA indexDesc)* RIGHT_PAREN engineDesc? charsetDesc? keyDesc? comment? partitionDesc? distributionDesc? orderByDesc? rollupDesc? properties?
extProperties?
;
columnDesc
: identifier type charsetName? KEY? aggDesc? (NULL_ | NOT NULL_)? (
defaultDesc
| AUTO_INCREMENT
| generatedColumnDesc
)? comment?
;
charsetName
: CHAR SET identifier
| CHARSET identifier
| CHARACTER SET identifier
;
defaultDesc
: DEFAULT (
string_
| NULL_
| CURRENT_TIMESTAMP
| LEFT_PAREN qualifiedName LEFT_PAREN RIGHT_PAREN RIGHT_PAREN
)
;
generatedColumnDesc
: AS expression
;
indexDesc
: INDEX indexName = identifier identifierList (indexType propertyList?)? comment?
;
engineDesc
: ENGINE EQ identifier
;
charsetDesc
: DEFAULT? (CHAR SET | CHARSET | CHARACTER SET) EQ? identifierOrString
;
collateDesc
: DEFAULT? COLLATE EQ? identifierOrString
;
keyDesc
: (AGGREGATE | UNIQUE | PRIMARY | DUPLICATE) KEY identifierList
;
orderByDesc
: ORDER BY identifierList
;
aggDesc
: SUM
| MAX
| MIN
| REPLACE
| HLL_UNION
| BITMAP_UNION
| PERCENTILE_UNION
| REPLACE_IF_NOT_NULL
;
rollupDesc
: ROLLUP LEFT_PAREN rollupItem (COMMA rollupItem)* RIGHT_PAREN
;
rollupItem
: rollupName = identifier identifierList (dupKeys)? (fromRollup)? properties?
;
dupKeys
: DUPLICATE KEY identifierList
;
fromRollup
: FROM identifier
;
orReplace
: (OR REPLACE)?
;
ifNotExists
: (IF NOT EXISTS)?
;
createTableAsSelectStatement
: CREATE TEMPORARY? TABLE (IF NOT EXISTS)? qualifiedName (
LEFT_PAREN (
identifier (COMMA identifier)* (COMMA indexDesc)*
| indexDesc (COMMA indexDesc)*
) RIGHT_PAREN
)? keyDesc? comment? partitionDesc? distributionDesc? orderByDesc? properties? AS queryStatement
;
dropTableStatement
: DROP TEMPORARY? TABLE (IF EXISTS)? qualifiedName FORCE?
;
cleanTemporaryTableStatement
: CLEAN TEMPORARY TABLE ON SESSION string_
;
alterTableStatement
: ALTER TABLE qualifiedName alterClause (COMMA alterClause)*
| ALTER TABLE qualifiedName ADD ROLLUP rollupItem (COMMA rollupItem)*
| ALTER TABLE qualifiedName DROP ROLLUP identifier (COMMA identifier)*
;
createIndexStatement
: CREATE INDEX indexName = identifier ON qualifiedName identifierList (indexType propertyList?)? comment?
;
dropIndexStatement
: DROP INDEX indexName = identifier ON qualifiedName
;
indexType
: USING (BITMAP | GIN | NGRAMBF)
;
showTableStatement
: SHOW FULL? TABLES ((FROM | IN) db = qualifiedName)? (
(LIKE pattern = string_)
| (WHERE expression)
)?
;
showTemporaryTablesStatement
: SHOW TEMPORARY TABLES ((FROM | IN) db = qualifiedName)? (
(LIKE pattern = string_)
| (WHERE expression)
)?
;
showCreateTableStatement
: SHOW CREATE (TABLE | VIEW | MATERIALIZED VIEW) table = qualifiedName
;
showColumnStatement
: SHOW FULL? (COLUMNS | FIELDS) ((FROM | IN) table = qualifiedName) (
(FROM | IN) db = qualifiedName
)? ((LIKE pattern = string_) | (WHERE expression))?
;
showTableStatusStatement
: SHOW TABLE STATUS ((FROM | IN) db = qualifiedName)? (
(LIKE pattern = string_)
| (WHERE expression)
)?
;
refreshTableStatement
: REFRESH EXTERNAL TABLE qualifiedName (
PARTITION LEFT_PAREN string_ (COMMA string_)* RIGHT_PAREN
)?
;
showAlterStatement
: SHOW ALTER TABLE (COLUMN | ROLLUP | OPTIMIZE) ((FROM | IN) db = qualifiedName)? (
WHERE expression
)? (ORDER BY sortItem (COMMA sortItem)*)? (limitElement)?
| SHOW ALTER MATERIALIZED VIEW ((FROM | IN) db = qualifiedName)? (WHERE expression)? (
ORDER BY sortItem (COMMA sortItem)*
)? (limitElement)?
;
descTableStatement
: (DESC | DESCRIBE) table = qualifiedName ALL?
;
createTableLikeStatement
: CREATE (TEMPORARY | EXTERNAL)? TABLE (IF NOT EXISTS)? qualifiedName partitionDesc? distributionDesc? properties? LIKE qualifiedName
;
showIndexStatement
: SHOW (INDEX | INDEXES | KEY | KEYS) ((FROM | IN) table = qualifiedName) (
(FROM | IN) db = qualifiedName
)?
;
recoverTableStatement
: RECOVER TABLE qualifiedName
;
truncateTableStatement
: TRUNCATE TABLE qualifiedName partitionNames?
;
cancelAlterTableStatement
: CANCEL ALTER TABLE (COLUMN | ROLLUP | OPTIMIZE)? FROM qualifiedName (
LEFT_PAREN INTEGER_VALUE (COMMA INTEGER_VALUE)* RIGHT_PAREN
)?
| CANCEL ALTER MATERIALIZED VIEW FROM qualifiedName
;
showPartitionsStatement
: SHOW TEMPORARY? PARTITIONS FROM table = qualifiedName (WHERE expression)? (
ORDER BY sortItem (COMMA sortItem)*
)? limitElement?
;
recoverPartitionStatement
: RECOVER PARTITION identifier FROM table = qualifiedName
;
// ------------------------------------------- View Statement ----------------------------------------------------------
createViewStatement
: CREATE (OR REPLACE)? VIEW (IF NOT EXISTS)? qualifiedName (
LEFT_PAREN columnNameWithComment (COMMA columnNameWithComment)* RIGHT_PAREN
)? comment? AS queryStatement
;
alterViewStatement
: ALTER VIEW qualifiedName (
LEFT_PAREN columnNameWithComment (COMMA columnNameWithComment)* RIGHT_PAREN
)? AS queryStatement
;
dropViewStatement
: DROP VIEW (IF EXISTS)? qualifiedName
;
columnNameWithComment
: columnName = identifier comment?
;
// ------------------------------------------- Task Statement ----------------------------------------------------------
submitTaskStatement
: SUBMIT TASK qualifiedName? taskClause* AS (
createTableAsSelectStatement
| insertStatement
| dataCacheSelectStatement
)
;
taskClause
: properties
| taskScheduleDesc
;
dropTaskStatement
: DROP TASK qualifiedName FORCE?
;
taskScheduleDesc
: SCHEDULE (START LEFT_PAREN string_ RIGHT_PAREN)? EVERY LEFT_PAREN taskInterval RIGHT_PAREN
;
// ------------------------------------------- Materialized View Statement ---------------------------------------------
createMaterializedViewStatement
: CREATE MATERIALIZED VIEW (IF NOT EXISTS)? mvName = qualifiedName (
LEFT_PAREN columnNameWithComment (COMMA columnNameWithComment)* (COMMA indexDesc)* RIGHT_PAREN
)? comment? materializedViewDesc* AS queryStatement
;
materializedViewDesc
: (PARTITION BY primaryExpression)
| distributionDesc
| orderByDesc
| refreshSchemeDesc
| properties
;
showMaterializedViewsStatement
: SHOW MATERIALIZED VIEWS ((FROM | IN) db = qualifiedName)? (
(LIKE pattern = string_)
| (WHERE expression)
)?
;
dropMaterializedViewStatement
: DROP MATERIALIZED VIEW (IF EXISTS)? mvName = qualifiedName
;
alterMaterializedViewStatement
: ALTER MATERIALIZED VIEW mvName = qualifiedName (
refreshSchemeDesc
| tableRenameClause
| modifyPropertiesClause
| swapTableClause
)
| ALTER MATERIALIZED VIEW mvName = qualifiedName statusDesc
;
refreshMaterializedViewStatement
: REFRESH MATERIALIZED VIEW mvName = qualifiedName (PARTITION partitionRangeDesc)? FORCE? (
WITH (SYNC | ASYNC) MODE
)?
;
cancelRefreshMaterializedViewStatement
: CANCEL REFRESH MATERIALIZED VIEW mvName = qualifiedName FORCE?
;
// ------------------------------------------- Admin Statement ---------------------------------------------------------
adminSetConfigStatement
: ADMIN SET FRONTEND CONFIG LEFT_PAREN property RIGHT_PAREN
;
adminSetReplicaStatusStatement
: ADMIN SET REPLICA STATUS properties
;
adminShowConfigStatement
: ADMIN SHOW FRONTEND CONFIG (LIKE pattern = string_)?
;
adminShowReplicaDistributionStatement
: ADMIN SHOW REPLICA DISTRIBUTION FROM qualifiedName partitionNames?
;
adminShowReplicaStatusStatement
: ADMIN SHOW REPLICA STATUS FROM qualifiedName partitionNames? (WHERE where = expression)?
;
adminRepairTableStatement
: ADMIN REPAIR TABLE qualifiedName partitionNames?
;
adminCancelRepairTableStatement
: ADMIN CANCEL REPAIR TABLE qualifiedName partitionNames?
;
adminCheckTabletsStatement
: ADMIN CHECK tabletList PROPERTIES LEFT_PAREN property RIGHT_PAREN
;
adminSetPartitionVersion
: ADMIN SET TABLE qualifiedName PARTITION LEFT_PAREN (
partitionName = identifierOrString
| partitionId = INTEGER_VALUE
) RIGHT_PAREN VERSION TO version = INTEGER_VALUE
;
killStatement
: KILL (CONNECTION? | QUERY) INTEGER_VALUE
;
syncStatement
: SYNC
;
// ------------------------------------------- Cluster Management Statement ---------------------------------------------
alterSystemStatement
: ALTER SYSTEM alterClause
;
cancelAlterSystemStatement
: CANCEL DECOMMISSION BACKEND string_ (COMMA string_)*
;
showComputeNodesStatement
: SHOW COMPUTE NODES
;
// ------------------------------------------- Catalog Statement -------------------------------------------------------
createExternalCatalogStatement
: CREATE EXTERNAL CATALOG (IF NOT EXISTS)? catalogName = identifierOrString comment? properties
;
showCreateExternalCatalogStatement
: SHOW CREATE CATALOG catalogName = identifierOrString
;
dropExternalCatalogStatement
: DROP CATALOG (IF EXISTS)? catalogName = identifierOrString
;
showCatalogsStatement
: SHOW CATALOGS
;
alterCatalogStatement
: ALTER CATALOG catalogName = identifierOrString modifyPropertiesClause
;
// ---------------------------------------- Storage Volume Statement ---------------------------------------------------
createStorageVolumeStatement
: CREATE STORAGE VOLUME (IF NOT EXISTS)? storageVolumeName = identifierOrString typeDesc locationsDesc comment? properties?
;
typeDesc
: TYPE EQ identifier
;
locationsDesc
: LOCATIONS EQ stringList
;
showStorageVolumesStatement
: SHOW STORAGE VOLUMES (LIKE pattern = string_)?
;
dropStorageVolumeStatement
: DROP STORAGE VOLUME (IF EXISTS)? storageVolumeName = identifierOrString
;
alterStorageVolumeStatement
: ALTER STORAGE VOLUME identifierOrString alterStorageVolumeClause (
COMMA alterStorageVolumeClause
)*
;
alterStorageVolumeClause
: modifyStorageVolumeCommentClause
| modifyStorageVolumePropertiesClause
;
modifyStorageVolumePropertiesClause
: SET propertyList
;
modifyStorageVolumeCommentClause
: COMMENT '=' string_
;
descStorageVolumeStatement
: (DESC | DESCRIBE) STORAGE VOLUME identifierOrString
;
setDefaultStorageVolumeStatement
: SET identifierOrString AS DEFAULT STORAGE VOLUME
;
// ------------------------------------------- FailPoint Statement -----------------------------------------------------
updateFailPointStatusStatement
: ADMIN DISABLE FAILPOINT string_ (ON BACKEND string_)?
| ADMIN ENABLE FAILPOINT string_ (WITH INTEGER_VALUE TIMES)? (ON BACKEND string_)?
| ADMIN ENABLE FAILPOINT string_ (WITH DECIMAL_VALUE PROBABILITY)? (ON BACKEND string_)?
;
showFailPointStatement
: SHOW FAILPOINTS ((LIKE pattern = string_))? (ON BACKEND string_)?
;
// ------------------------------------------- Dictionary Statement -----------------------------------------------------
createDictionaryStatement
: CREATE DICTIONARY dictionaryName USING qualifiedName LEFT_PAREN dictionaryColumnDesc (
COMMA dictionaryColumnDesc
)* RIGHT_PAREN properties?
;
dropDictionaryStatement
: DROP DICTIONARY qualifiedName CACHE?
;
refreshDictionaryStatement
: REFRESH DICTIONARY qualifiedName
;
showDictionaryStatement
: SHOW DICTIONARY qualifiedName?
;
cancelRefreshDictionaryStatement
: CANCEL REFRESH DICTIONARY qualifiedName
;
dictionaryColumnDesc
: qualifiedName KEY
| qualifiedName VALUE
;
dictionaryName
: qualifiedName
;
// ------------------------------------------- Alter Clause ------------------------------------------------------------
alterClause
//Alter system clause
: addFrontendClause
| dropFrontendClause
| modifyFrontendHostClause
| addBackendClause
| dropBackendClause
| decommissionBackendClause
| modifyBackendClause
| addComputeNodeClause
| dropComputeNodeClause
| modifyBrokerClause
| alterLoadErrorUrlClause
| createImageClause
| cleanTabletSchedQClause
| decommissionDiskClause
| cancelDecommissionDiskClause
| disableDiskClause
| cancelDisableDiskClause
//Alter table clause
| createIndexClause
| dropIndexClause
| tableRenameClause
| swapTableClause
| modifyPropertiesClause
| addColumnClause
| addColumnsClause
| dropColumnClause
| modifyColumnClause
| columnRenameClause
| reorderColumnsClause
| rollupRenameClause
| compactionClause
| modifyCommentClause
| optimizeClause
| addFieldClause
| dropFieldClause
//Alter partition clause
| addPartitionClause
| dropPartitionClause
| distributionClause
| truncatePartitionClause
| modifyPartitionClause
| replacePartitionClause
| partitionRenameClause
;
// ---------Alter system clause---------
addFrontendClause
: ADD (FOLLOWER | OBSERVER) string_
;
dropFrontendClause
: DROP (FOLLOWER | OBSERVER) string_
;
modifyFrontendHostClause
: MODIFY FRONTEND HOST string_ TO string_
;
addBackendClause
: ADD BACKEND string_ (COMMA string_)*
;
dropBackendClause
: DROP BACKEND string_ (COMMA string_)* FORCE?
;
decommissionBackendClause
: DECOMMISSION BACKEND string_ (COMMA string_)*
;
modifyBackendClause
: MODIFY BACKEND HOST string_ TO string_
| MODIFY BACKEND string_ SET propertyList
;
addComputeNodeClause
: ADD COMPUTE NODE string_ (COMMA string_)*
;
dropComputeNodeClause
: DROP COMPUTE NODE string_ (COMMA string_)*
;
modifyBrokerClause
: ADD BROKER identifierOrString string_ (COMMA string_)*
| DROP BROKER identifierOrString string_ (COMMA string_)*
| DROP ALL BROKER identifierOrString
;
alterLoadErrorUrlClause
: SET LOAD ERRORS HUB properties?
;
createImageClause
: CREATE IMAGE
;
cleanTabletSchedQClause
: CLEAN TABLET SCHEDULER QUEUE
;
decommissionDiskClause
: DECOMMISSION DISK string_ (COMMA string_)* ON BACKEND string_
;
cancelDecommissionDiskClause
: CANCEL DECOMMISSION DISK string_ (COMMA string_)* ON BACKEND string_
;
disableDiskClause
: DISABLE DISK string_ (COMMA string_)* ON BACKEND string_
;
cancelDisableDiskClause
: CANCEL DISABLE DISK string_ (COMMA string_)* ON BACKEND string_
;
// ---------Alter table clause---------
createIndexClause
: ADD INDEX indexName = identifier identifierList (indexType propertyList?)? comment?
;
dropIndexClause
: DROP INDEX indexName = identifier
;
tableRenameClause
: RENAME identifier
;
swapTableClause
: SWAP WITH identifier
;
modifyPropertiesClause
: SET propertyList
;