-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtidbparser_base_listener.go
2933 lines (1972 loc) · 151 KB
/
tidbparser_base_listener.go
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
// Code generated from TiDBParser.g4 by ANTLR 4.13.1. DO NOT EDIT.
package parser // TiDBParser
import "github.com/antlr4-go/antlr/v4"
// BaseTiDBParserListener is a complete listener for a parse tree produced by TiDBParser.
type BaseTiDBParserListener struct{}
var _ TiDBParserListener = &BaseTiDBParserListener{}
// VisitTerminal is called when a terminal node is visited.
func (s *BaseTiDBParserListener) VisitTerminal(node antlr.TerminalNode) {}
// VisitErrorNode is called when an error node is visited.
func (s *BaseTiDBParserListener) VisitErrorNode(node antlr.ErrorNode) {}
// EnterEveryRule is called when any rule is entered.
func (s *BaseTiDBParserListener) EnterEveryRule(ctx antlr.ParserRuleContext) {}
// ExitEveryRule is called when any rule is exited.
func (s *BaseTiDBParserListener) ExitEveryRule(ctx antlr.ParserRuleContext) {}
// EnterScript is called when production script is entered.
func (s *BaseTiDBParserListener) EnterScript(ctx *ScriptContext) {}
// ExitScript is called when production script is exited.
func (s *BaseTiDBParserListener) ExitScript(ctx *ScriptContext) {}
// EnterQuery is called when production query is entered.
func (s *BaseTiDBParserListener) EnterQuery(ctx *QueryContext) {}
// ExitQuery is called when production query is exited.
func (s *BaseTiDBParserListener) ExitQuery(ctx *QueryContext) {}
// EnterSimpleStatement is called when production simpleStatement is entered.
func (s *BaseTiDBParserListener) EnterSimpleStatement(ctx *SimpleStatementContext) {}
// ExitSimpleStatement is called when production simpleStatement is exited.
func (s *BaseTiDBParserListener) ExitSimpleStatement(ctx *SimpleStatementContext) {}
// EnterCreateStatement is called when production createStatement is entered.
func (s *BaseTiDBParserListener) EnterCreateStatement(ctx *CreateStatementContext) {}
// ExitCreateStatement is called when production createStatement is exited.
func (s *BaseTiDBParserListener) ExitCreateStatement(ctx *CreateStatementContext) {}
// EnterDropStatement is called when production dropStatement is entered.
func (s *BaseTiDBParserListener) EnterDropStatement(ctx *DropStatementContext) {}
// ExitDropStatement is called when production dropStatement is exited.
func (s *BaseTiDBParserListener) ExitDropStatement(ctx *DropStatementContext) {}
// EnterCreateTable is called when production createTable is entered.
func (s *BaseTiDBParserListener) EnterCreateTable(ctx *CreateTableContext) {}
// ExitCreateTable is called when production createTable is exited.
func (s *BaseTiDBParserListener) ExitCreateTable(ctx *CreateTableContext) {}
// EnterCreateView is called when production createView is entered.
func (s *BaseTiDBParserListener) EnterCreateView(ctx *CreateViewContext) {}
// ExitCreateView is called when production createView is exited.
func (s *BaseTiDBParserListener) ExitCreateView(ctx *CreateViewContext) {}
// EnterDropView is called when production dropView is entered.
func (s *BaseTiDBParserListener) EnterDropView(ctx *DropViewContext) {}
// ExitDropView is called when production dropView is exited.
func (s *BaseTiDBParserListener) ExitDropView(ctx *DropViewContext) {}
// EnterViewReplaceOrAlgorithm is called when production viewReplaceOrAlgorithm is entered.
func (s *BaseTiDBParserListener) EnterViewReplaceOrAlgorithm(ctx *ViewReplaceOrAlgorithmContext) {}
// ExitViewReplaceOrAlgorithm is called when production viewReplaceOrAlgorithm is exited.
func (s *BaseTiDBParserListener) ExitViewReplaceOrAlgorithm(ctx *ViewReplaceOrAlgorithmContext) {}
// EnterViewAlgorithm is called when production viewAlgorithm is entered.
func (s *BaseTiDBParserListener) EnterViewAlgorithm(ctx *ViewAlgorithmContext) {}
// ExitViewAlgorithm is called when production viewAlgorithm is exited.
func (s *BaseTiDBParserListener) ExitViewAlgorithm(ctx *ViewAlgorithmContext) {}
// EnterViewSuid is called when production viewSuid is entered.
func (s *BaseTiDBParserListener) EnterViewSuid(ctx *ViewSuidContext) {}
// ExitViewSuid is called when production viewSuid is exited.
func (s *BaseTiDBParserListener) ExitViewSuid(ctx *ViewSuidContext) {}
// EnterViewTail is called when production viewTail is entered.
func (s *BaseTiDBParserListener) EnterViewTail(ctx *ViewTailContext) {}
// ExitViewTail is called when production viewTail is exited.
func (s *BaseTiDBParserListener) ExitViewTail(ctx *ViewTailContext) {}
// EnterViewSelect is called when production viewSelect is entered.
func (s *BaseTiDBParserListener) EnterViewSelect(ctx *ViewSelectContext) {}
// ExitViewSelect is called when production viewSelect is exited.
func (s *BaseTiDBParserListener) ExitViewSelect(ctx *ViewSelectContext) {}
// EnterViewCheckOption is called when production viewCheckOption is entered.
func (s *BaseTiDBParserListener) EnterViewCheckOption(ctx *ViewCheckOptionContext) {}
// ExitViewCheckOption is called when production viewCheckOption is exited.
func (s *BaseTiDBParserListener) ExitViewCheckOption(ctx *ViewCheckOptionContext) {}
// EnterDuplicateAsQueryExpression is called when production duplicateAsQueryExpression is entered.
func (s *BaseTiDBParserListener) EnterDuplicateAsQueryExpression(ctx *DuplicateAsQueryExpressionContext) {
}
// ExitDuplicateAsQueryExpression is called when production duplicateAsQueryExpression is exited.
func (s *BaseTiDBParserListener) ExitDuplicateAsQueryExpression(ctx *DuplicateAsQueryExpressionContext) {
}
// EnterQueryExpressionOrParens is called when production queryExpressionOrParens is entered.
func (s *BaseTiDBParserListener) EnterQueryExpressionOrParens(ctx *QueryExpressionOrParensContext) {}
// ExitQueryExpressionOrParens is called when production queryExpressionOrParens is exited.
func (s *BaseTiDBParserListener) ExitQueryExpressionOrParens(ctx *QueryExpressionOrParensContext) {}
// EnterTableElementList is called when production tableElementList is entered.
func (s *BaseTiDBParserListener) EnterTableElementList(ctx *TableElementListContext) {}
// ExitTableElementList is called when production tableElementList is exited.
func (s *BaseTiDBParserListener) ExitTableElementList(ctx *TableElementListContext) {}
// EnterTableElement is called when production tableElement is entered.
func (s *BaseTiDBParserListener) EnterTableElement(ctx *TableElementContext) {}
// ExitTableElement is called when production tableElement is exited.
func (s *BaseTiDBParserListener) ExitTableElement(ctx *TableElementContext) {}
// EnterTableConstraintDef is called when production tableConstraintDef is entered.
func (s *BaseTiDBParserListener) EnterTableConstraintDef(ctx *TableConstraintDefContext) {}
// ExitTableConstraintDef is called when production tableConstraintDef is exited.
func (s *BaseTiDBParserListener) ExitTableConstraintDef(ctx *TableConstraintDefContext) {}
// EnterIndexOption is called when production indexOption is entered.
func (s *BaseTiDBParserListener) EnterIndexOption(ctx *IndexOptionContext) {}
// ExitIndexOption is called when production indexOption is exited.
func (s *BaseTiDBParserListener) ExitIndexOption(ctx *IndexOptionContext) {}
// EnterCheckConstraint is called when production checkConstraint is entered.
func (s *BaseTiDBParserListener) EnterCheckConstraint(ctx *CheckConstraintContext) {}
// ExitCheckConstraint is called when production checkConstraint is exited.
func (s *BaseTiDBParserListener) ExitCheckConstraint(ctx *CheckConstraintContext) {}
// EnterIndexNameAndType is called when production indexNameAndType is entered.
func (s *BaseTiDBParserListener) EnterIndexNameAndType(ctx *IndexNameAndTypeContext) {}
// ExitIndexNameAndType is called when production indexNameAndType is exited.
func (s *BaseTiDBParserListener) ExitIndexNameAndType(ctx *IndexNameAndTypeContext) {}
// EnterTemporaryOption is called when production temporaryOption is entered.
func (s *BaseTiDBParserListener) EnterTemporaryOption(ctx *TemporaryOptionContext) {}
// ExitTemporaryOption is called when production temporaryOption is exited.
func (s *BaseTiDBParserListener) ExitTemporaryOption(ctx *TemporaryOptionContext) {}
// EnterColumnDef is called when production columnDef is entered.
func (s *BaseTiDBParserListener) EnterColumnDef(ctx *ColumnDefContext) {}
// ExitColumnDef is called when production columnDef is exited.
func (s *BaseTiDBParserListener) ExitColumnDef(ctx *ColumnDefContext) {}
// EnterColumnOptionList is called when production columnOptionList is entered.
func (s *BaseTiDBParserListener) EnterColumnOptionList(ctx *ColumnOptionListContext) {}
// ExitColumnOptionList is called when production columnOptionList is exited.
func (s *BaseTiDBParserListener) ExitColumnOptionList(ctx *ColumnOptionListContext) {}
// EnterColumnOption is called when production columnOption is entered.
func (s *BaseTiDBParserListener) EnterColumnOption(ctx *ColumnOptionContext) {}
// ExitColumnOption is called when production columnOption is exited.
func (s *BaseTiDBParserListener) ExitColumnOption(ctx *ColumnOptionContext) {}
// EnterConstraintName is called when production constraintName is entered.
func (s *BaseTiDBParserListener) EnterConstraintName(ctx *ConstraintNameContext) {}
// ExitConstraintName is called when production constraintName is exited.
func (s *BaseTiDBParserListener) ExitConstraintName(ctx *ConstraintNameContext) {}
// EnterConstraintEnforcement is called when production constraintEnforcement is entered.
func (s *BaseTiDBParserListener) EnterConstraintEnforcement(ctx *ConstraintEnforcementContext) {}
// ExitConstraintEnforcement is called when production constraintEnforcement is exited.
func (s *BaseTiDBParserListener) ExitConstraintEnforcement(ctx *ConstraintEnforcementContext) {}
// EnterSelectStatement is called when production selectStatement is entered.
func (s *BaseTiDBParserListener) EnterSelectStatement(ctx *SelectStatementContext) {}
// ExitSelectStatement is called when production selectStatement is exited.
func (s *BaseTiDBParserListener) ExitSelectStatement(ctx *SelectStatementContext) {}
// EnterSelectStatementWithInto is called when production selectStatementWithInto is entered.
func (s *BaseTiDBParserListener) EnterSelectStatementWithInto(ctx *SelectStatementWithIntoContext) {}
// ExitSelectStatementWithInto is called when production selectStatementWithInto is exited.
func (s *BaseTiDBParserListener) ExitSelectStatementWithInto(ctx *SelectStatementWithIntoContext) {}
// EnterQueryExpression is called when production queryExpression is entered.
func (s *BaseTiDBParserListener) EnterQueryExpression(ctx *QueryExpressionContext) {}
// ExitQueryExpression is called when production queryExpression is exited.
func (s *BaseTiDBParserListener) ExitQueryExpression(ctx *QueryExpressionContext) {}
// EnterQueryExpressionBody is called when production queryExpressionBody is entered.
func (s *BaseTiDBParserListener) EnterQueryExpressionBody(ctx *QueryExpressionBodyContext) {}
// ExitQueryExpressionBody is called when production queryExpressionBody is exited.
func (s *BaseTiDBParserListener) ExitQueryExpressionBody(ctx *QueryExpressionBodyContext) {}
// EnterQueryExpressionParens is called when production queryExpressionParens is entered.
func (s *BaseTiDBParserListener) EnterQueryExpressionParens(ctx *QueryExpressionParensContext) {}
// ExitQueryExpressionParens is called when production queryExpressionParens is exited.
func (s *BaseTiDBParserListener) ExitQueryExpressionParens(ctx *QueryExpressionParensContext) {}
// EnterQueryPrimary is called when production queryPrimary is entered.
func (s *BaseTiDBParserListener) EnterQueryPrimary(ctx *QueryPrimaryContext) {}
// ExitQueryPrimary is called when production queryPrimary is exited.
func (s *BaseTiDBParserListener) ExitQueryPrimary(ctx *QueryPrimaryContext) {}
// EnterQuerySpecification is called when production querySpecification is entered.
func (s *BaseTiDBParserListener) EnterQuerySpecification(ctx *QuerySpecificationContext) {}
// ExitQuerySpecification is called when production querySpecification is exited.
func (s *BaseTiDBParserListener) ExitQuerySpecification(ctx *QuerySpecificationContext) {}
// EnterSubquery is called when production subquery is entered.
func (s *BaseTiDBParserListener) EnterSubquery(ctx *SubqueryContext) {}
// ExitSubquery is called when production subquery is exited.
func (s *BaseTiDBParserListener) ExitSubquery(ctx *SubqueryContext) {}
// EnterQuerySpecOption is called when production querySpecOption is entered.
func (s *BaseTiDBParserListener) EnterQuerySpecOption(ctx *QuerySpecOptionContext) {}
// ExitQuerySpecOption is called when production querySpecOption is exited.
func (s *BaseTiDBParserListener) ExitQuerySpecOption(ctx *QuerySpecOptionContext) {}
// EnterLimitClause is called when production limitClause is entered.
func (s *BaseTiDBParserListener) EnterLimitClause(ctx *LimitClauseContext) {}
// ExitLimitClause is called when production limitClause is exited.
func (s *BaseTiDBParserListener) ExitLimitClause(ctx *LimitClauseContext) {}
// EnterSimpleLimitClause is called when production simpleLimitClause is entered.
func (s *BaseTiDBParserListener) EnterSimpleLimitClause(ctx *SimpleLimitClauseContext) {}
// ExitSimpleLimitClause is called when production simpleLimitClause is exited.
func (s *BaseTiDBParserListener) ExitSimpleLimitClause(ctx *SimpleLimitClauseContext) {}
// EnterLimitOptions is called when production limitOptions is entered.
func (s *BaseTiDBParserListener) EnterLimitOptions(ctx *LimitOptionsContext) {}
// ExitLimitOptions is called when production limitOptions is exited.
func (s *BaseTiDBParserListener) ExitLimitOptions(ctx *LimitOptionsContext) {}
// EnterLimitOption is called when production limitOption is entered.
func (s *BaseTiDBParserListener) EnterLimitOption(ctx *LimitOptionContext) {}
// ExitLimitOption is called when production limitOption is exited.
func (s *BaseTiDBParserListener) ExitLimitOption(ctx *LimitOptionContext) {}
// EnterIntoClause is called when production intoClause is entered.
func (s *BaseTiDBParserListener) EnterIntoClause(ctx *IntoClauseContext) {}
// ExitIntoClause is called when production intoClause is exited.
func (s *BaseTiDBParserListener) ExitIntoClause(ctx *IntoClauseContext) {}
// EnterProcedureAnalyseClause is called when production procedureAnalyseClause is entered.
func (s *BaseTiDBParserListener) EnterProcedureAnalyseClause(ctx *ProcedureAnalyseClauseContext) {}
// ExitProcedureAnalyseClause is called when production procedureAnalyseClause is exited.
func (s *BaseTiDBParserListener) ExitProcedureAnalyseClause(ctx *ProcedureAnalyseClauseContext) {}
// EnterHavingClause is called when production havingClause is entered.
func (s *BaseTiDBParserListener) EnterHavingClause(ctx *HavingClauseContext) {}
// ExitHavingClause is called when production havingClause is exited.
func (s *BaseTiDBParserListener) ExitHavingClause(ctx *HavingClauseContext) {}
// EnterWindowClause is called when production windowClause is entered.
func (s *BaseTiDBParserListener) EnterWindowClause(ctx *WindowClauseContext) {}
// ExitWindowClause is called when production windowClause is exited.
func (s *BaseTiDBParserListener) ExitWindowClause(ctx *WindowClauseContext) {}
// EnterWindowDefinition is called when production windowDefinition is entered.
func (s *BaseTiDBParserListener) EnterWindowDefinition(ctx *WindowDefinitionContext) {}
// ExitWindowDefinition is called when production windowDefinition is exited.
func (s *BaseTiDBParserListener) ExitWindowDefinition(ctx *WindowDefinitionContext) {}
// EnterWindowSpec is called when production windowSpec is entered.
func (s *BaseTiDBParserListener) EnterWindowSpec(ctx *WindowSpecContext) {}
// ExitWindowSpec is called when production windowSpec is exited.
func (s *BaseTiDBParserListener) ExitWindowSpec(ctx *WindowSpecContext) {}
// EnterWindowSpecDetails is called when production windowSpecDetails is entered.
func (s *BaseTiDBParserListener) EnterWindowSpecDetails(ctx *WindowSpecDetailsContext) {}
// ExitWindowSpecDetails is called when production windowSpecDetails is exited.
func (s *BaseTiDBParserListener) ExitWindowSpecDetails(ctx *WindowSpecDetailsContext) {}
// EnterWindowFrameClause is called when production windowFrameClause is entered.
func (s *BaseTiDBParserListener) EnterWindowFrameClause(ctx *WindowFrameClauseContext) {}
// ExitWindowFrameClause is called when production windowFrameClause is exited.
func (s *BaseTiDBParserListener) ExitWindowFrameClause(ctx *WindowFrameClauseContext) {}
// EnterWindowFrameUnits is called when production windowFrameUnits is entered.
func (s *BaseTiDBParserListener) EnterWindowFrameUnits(ctx *WindowFrameUnitsContext) {}
// ExitWindowFrameUnits is called when production windowFrameUnits is exited.
func (s *BaseTiDBParserListener) ExitWindowFrameUnits(ctx *WindowFrameUnitsContext) {}
// EnterWindowFrameExtent is called when production windowFrameExtent is entered.
func (s *BaseTiDBParserListener) EnterWindowFrameExtent(ctx *WindowFrameExtentContext) {}
// ExitWindowFrameExtent is called when production windowFrameExtent is exited.
func (s *BaseTiDBParserListener) ExitWindowFrameExtent(ctx *WindowFrameExtentContext) {}
// EnterWindowFrameStart is called when production windowFrameStart is entered.
func (s *BaseTiDBParserListener) EnterWindowFrameStart(ctx *WindowFrameStartContext) {}
// ExitWindowFrameStart is called when production windowFrameStart is exited.
func (s *BaseTiDBParserListener) ExitWindowFrameStart(ctx *WindowFrameStartContext) {}
// EnterWindowFrameBetween is called when production windowFrameBetween is entered.
func (s *BaseTiDBParserListener) EnterWindowFrameBetween(ctx *WindowFrameBetweenContext) {}
// ExitWindowFrameBetween is called when production windowFrameBetween is exited.
func (s *BaseTiDBParserListener) ExitWindowFrameBetween(ctx *WindowFrameBetweenContext) {}
// EnterWindowFrameBound is called when production windowFrameBound is entered.
func (s *BaseTiDBParserListener) EnterWindowFrameBound(ctx *WindowFrameBoundContext) {}
// ExitWindowFrameBound is called when production windowFrameBound is exited.
func (s *BaseTiDBParserListener) ExitWindowFrameBound(ctx *WindowFrameBoundContext) {}
// EnterWindowFrameExclusion is called when production windowFrameExclusion is entered.
func (s *BaseTiDBParserListener) EnterWindowFrameExclusion(ctx *WindowFrameExclusionContext) {}
// ExitWindowFrameExclusion is called when production windowFrameExclusion is exited.
func (s *BaseTiDBParserListener) ExitWindowFrameExclusion(ctx *WindowFrameExclusionContext) {}
// EnterWithClause is called when production withClause is entered.
func (s *BaseTiDBParserListener) EnterWithClause(ctx *WithClauseContext) {}
// ExitWithClause is called when production withClause is exited.
func (s *BaseTiDBParserListener) ExitWithClause(ctx *WithClauseContext) {}
// EnterCommonTableExpression is called when production commonTableExpression is entered.
func (s *BaseTiDBParserListener) EnterCommonTableExpression(ctx *CommonTableExpressionContext) {}
// ExitCommonTableExpression is called when production commonTableExpression is exited.
func (s *BaseTiDBParserListener) ExitCommonTableExpression(ctx *CommonTableExpressionContext) {}
// EnterGroupByClause is called when production groupByClause is entered.
func (s *BaseTiDBParserListener) EnterGroupByClause(ctx *GroupByClauseContext) {}
// ExitGroupByClause is called when production groupByClause is exited.
func (s *BaseTiDBParserListener) ExitGroupByClause(ctx *GroupByClauseContext) {}
// EnterOlapOption is called when production olapOption is entered.
func (s *BaseTiDBParserListener) EnterOlapOption(ctx *OlapOptionContext) {}
// ExitOlapOption is called when production olapOption is exited.
func (s *BaseTiDBParserListener) ExitOlapOption(ctx *OlapOptionContext) {}
// EnterOrderClause is called when production orderClause is entered.
func (s *BaseTiDBParserListener) EnterOrderClause(ctx *OrderClauseContext) {}
// ExitOrderClause is called when production orderClause is exited.
func (s *BaseTiDBParserListener) ExitOrderClause(ctx *OrderClauseContext) {}
// EnterDirection is called when production direction is entered.
func (s *BaseTiDBParserListener) EnterDirection(ctx *DirectionContext) {}
// ExitDirection is called when production direction is exited.
func (s *BaseTiDBParserListener) ExitDirection(ctx *DirectionContext) {}
// EnterFromClause is called when production fromClause is entered.
func (s *BaseTiDBParserListener) EnterFromClause(ctx *FromClauseContext) {}
// ExitFromClause is called when production fromClause is exited.
func (s *BaseTiDBParserListener) ExitFromClause(ctx *FromClauseContext) {}
// EnterTableReferenceList is called when production tableReferenceList is entered.
func (s *BaseTiDBParserListener) EnterTableReferenceList(ctx *TableReferenceListContext) {}
// ExitTableReferenceList is called when production tableReferenceList is exited.
func (s *BaseTiDBParserListener) ExitTableReferenceList(ctx *TableReferenceListContext) {}
// EnterTableValueConstructor is called when production tableValueConstructor is entered.
func (s *BaseTiDBParserListener) EnterTableValueConstructor(ctx *TableValueConstructorContext) {}
// ExitTableValueConstructor is called when production tableValueConstructor is exited.
func (s *BaseTiDBParserListener) ExitTableValueConstructor(ctx *TableValueConstructorContext) {}
// EnterExplicitTable is called when production explicitTable is entered.
func (s *BaseTiDBParserListener) EnterExplicitTable(ctx *ExplicitTableContext) {}
// ExitExplicitTable is called when production explicitTable is exited.
func (s *BaseTiDBParserListener) ExitExplicitTable(ctx *ExplicitTableContext) {}
// EnterRowValueExplicit is called when production rowValueExplicit is entered.
func (s *BaseTiDBParserListener) EnterRowValueExplicit(ctx *RowValueExplicitContext) {}
// ExitRowValueExplicit is called when production rowValueExplicit is exited.
func (s *BaseTiDBParserListener) ExitRowValueExplicit(ctx *RowValueExplicitContext) {}
// EnterValues is called when production values is entered.
func (s *BaseTiDBParserListener) EnterValues(ctx *ValuesContext) {}
// ExitValues is called when production values is exited.
func (s *BaseTiDBParserListener) ExitValues(ctx *ValuesContext) {}
// EnterSelectOption is called when production selectOption is entered.
func (s *BaseTiDBParserListener) EnterSelectOption(ctx *SelectOptionContext) {}
// ExitSelectOption is called when production selectOption is exited.
func (s *BaseTiDBParserListener) ExitSelectOption(ctx *SelectOptionContext) {}
// EnterLockingClauseList is called when production lockingClauseList is entered.
func (s *BaseTiDBParserListener) EnterLockingClauseList(ctx *LockingClauseListContext) {}
// ExitLockingClauseList is called when production lockingClauseList is exited.
func (s *BaseTiDBParserListener) ExitLockingClauseList(ctx *LockingClauseListContext) {}
// EnterLockingClause is called when production lockingClause is entered.
func (s *BaseTiDBParserListener) EnterLockingClause(ctx *LockingClauseContext) {}
// ExitLockingClause is called when production lockingClause is exited.
func (s *BaseTiDBParserListener) ExitLockingClause(ctx *LockingClauseContext) {}
// EnterLockStrengh is called when production lockStrengh is entered.
func (s *BaseTiDBParserListener) EnterLockStrengh(ctx *LockStrenghContext) {}
// ExitLockStrengh is called when production lockStrengh is exited.
func (s *BaseTiDBParserListener) ExitLockStrengh(ctx *LockStrenghContext) {}
// EnterLockedRowAction is called when production lockedRowAction is entered.
func (s *BaseTiDBParserListener) EnterLockedRowAction(ctx *LockedRowActionContext) {}
// ExitLockedRowAction is called when production lockedRowAction is exited.
func (s *BaseTiDBParserListener) ExitLockedRowAction(ctx *LockedRowActionContext) {}
// EnterSelectItemList is called when production selectItemList is entered.
func (s *BaseTiDBParserListener) EnterSelectItemList(ctx *SelectItemListContext) {}
// ExitSelectItemList is called when production selectItemList is exited.
func (s *BaseTiDBParserListener) ExitSelectItemList(ctx *SelectItemListContext) {}
// EnterSelectItem is called when production selectItem is entered.
func (s *BaseTiDBParserListener) EnterSelectItem(ctx *SelectItemContext) {}
// ExitSelectItem is called when production selectItem is exited.
func (s *BaseTiDBParserListener) ExitSelectItem(ctx *SelectItemContext) {}
// EnterSelectAlias is called when production selectAlias is entered.
func (s *BaseTiDBParserListener) EnterSelectAlias(ctx *SelectAliasContext) {}
// ExitSelectAlias is called when production selectAlias is exited.
func (s *BaseTiDBParserListener) ExitSelectAlias(ctx *SelectAliasContext) {}
// EnterWhereClause is called when production whereClause is entered.
func (s *BaseTiDBParserListener) EnterWhereClause(ctx *WhereClauseContext) {}
// ExitWhereClause is called when production whereClause is exited.
func (s *BaseTiDBParserListener) ExitWhereClause(ctx *WhereClauseContext) {}
// EnterTableReference is called when production tableReference is entered.
func (s *BaseTiDBParserListener) EnterTableReference(ctx *TableReferenceContext) {}
// ExitTableReference is called when production tableReference is exited.
func (s *BaseTiDBParserListener) ExitTableReference(ctx *TableReferenceContext) {}
// EnterEscapedTableReference is called when production escapedTableReference is entered.
func (s *BaseTiDBParserListener) EnterEscapedTableReference(ctx *EscapedTableReferenceContext) {}
// ExitEscapedTableReference is called when production escapedTableReference is exited.
func (s *BaseTiDBParserListener) ExitEscapedTableReference(ctx *EscapedTableReferenceContext) {}
// EnterJoinedTable is called when production joinedTable is entered.
func (s *BaseTiDBParserListener) EnterJoinedTable(ctx *JoinedTableContext) {}
// ExitJoinedTable is called when production joinedTable is exited.
func (s *BaseTiDBParserListener) ExitJoinedTable(ctx *JoinedTableContext) {}
// EnterNaturalJoinType is called when production naturalJoinType is entered.
func (s *BaseTiDBParserListener) EnterNaturalJoinType(ctx *NaturalJoinTypeContext) {}
// ExitNaturalJoinType is called when production naturalJoinType is exited.
func (s *BaseTiDBParserListener) ExitNaturalJoinType(ctx *NaturalJoinTypeContext) {}
// EnterInnerJoinType is called when production innerJoinType is entered.
func (s *BaseTiDBParserListener) EnterInnerJoinType(ctx *InnerJoinTypeContext) {}
// ExitInnerJoinType is called when production innerJoinType is exited.
func (s *BaseTiDBParserListener) ExitInnerJoinType(ctx *InnerJoinTypeContext) {}
// EnterOuterJoinType is called when production outerJoinType is entered.
func (s *BaseTiDBParserListener) EnterOuterJoinType(ctx *OuterJoinTypeContext) {}
// ExitOuterJoinType is called when production outerJoinType is exited.
func (s *BaseTiDBParserListener) ExitOuterJoinType(ctx *OuterJoinTypeContext) {}
// EnterTableFactor is called when production tableFactor is entered.
func (s *BaseTiDBParserListener) EnterTableFactor(ctx *TableFactorContext) {}
// ExitTableFactor is called when production tableFactor is exited.
func (s *BaseTiDBParserListener) ExitTableFactor(ctx *TableFactorContext) {}
// EnterSingleTable is called when production singleTable is entered.
func (s *BaseTiDBParserListener) EnterSingleTable(ctx *SingleTableContext) {}
// ExitSingleTable is called when production singleTable is exited.
func (s *BaseTiDBParserListener) ExitSingleTable(ctx *SingleTableContext) {}
// EnterSingleTableParens is called when production singleTableParens is entered.
func (s *BaseTiDBParserListener) EnterSingleTableParens(ctx *SingleTableParensContext) {}
// ExitSingleTableParens is called when production singleTableParens is exited.
func (s *BaseTiDBParserListener) ExitSingleTableParens(ctx *SingleTableParensContext) {}
// EnterDerivedTable is called when production derivedTable is entered.
func (s *BaseTiDBParserListener) EnterDerivedTable(ctx *DerivedTableContext) {}
// ExitDerivedTable is called when production derivedTable is exited.
func (s *BaseTiDBParserListener) ExitDerivedTable(ctx *DerivedTableContext) {}
// EnterTableReferenceListParens is called when production tableReferenceListParens is entered.
func (s *BaseTiDBParserListener) EnterTableReferenceListParens(ctx *TableReferenceListParensContext) {
}
// ExitTableReferenceListParens is called when production tableReferenceListParens is exited.
func (s *BaseTiDBParserListener) ExitTableReferenceListParens(ctx *TableReferenceListParensContext) {}
// EnterTableFunction is called when production tableFunction is entered.
func (s *BaseTiDBParserListener) EnterTableFunction(ctx *TableFunctionContext) {}
// ExitTableFunction is called when production tableFunction is exited.
func (s *BaseTiDBParserListener) ExitTableFunction(ctx *TableFunctionContext) {}
// EnterColumnsClause is called when production columnsClause is entered.
func (s *BaseTiDBParserListener) EnterColumnsClause(ctx *ColumnsClauseContext) {}
// ExitColumnsClause is called when production columnsClause is exited.
func (s *BaseTiDBParserListener) ExitColumnsClause(ctx *ColumnsClauseContext) {}
// EnterJtColumn is called when production jtColumn is entered.
func (s *BaseTiDBParserListener) EnterJtColumn(ctx *JtColumnContext) {}
// ExitJtColumn is called when production jtColumn is exited.
func (s *BaseTiDBParserListener) ExitJtColumn(ctx *JtColumnContext) {}
// EnterOnEmptyOrError is called when production onEmptyOrError is entered.
func (s *BaseTiDBParserListener) EnterOnEmptyOrError(ctx *OnEmptyOrErrorContext) {}
// ExitOnEmptyOrError is called when production onEmptyOrError is exited.
func (s *BaseTiDBParserListener) ExitOnEmptyOrError(ctx *OnEmptyOrErrorContext) {}
// EnterOnEmpty is called when production onEmpty is entered.
func (s *BaseTiDBParserListener) EnterOnEmpty(ctx *OnEmptyContext) {}
// ExitOnEmpty is called when production onEmpty is exited.
func (s *BaseTiDBParserListener) ExitOnEmpty(ctx *OnEmptyContext) {}
// EnterOnError is called when production onError is entered.
func (s *BaseTiDBParserListener) EnterOnError(ctx *OnErrorContext) {}
// ExitOnError is called when production onError is exited.
func (s *BaseTiDBParserListener) ExitOnError(ctx *OnErrorContext) {}
// EnterJtOnResponse is called when production jtOnResponse is entered.
func (s *BaseTiDBParserListener) EnterJtOnResponse(ctx *JtOnResponseContext) {}
// ExitJtOnResponse is called when production jtOnResponse is exited.
func (s *BaseTiDBParserListener) ExitJtOnResponse(ctx *JtOnResponseContext) {}
// EnterSetOprSymbol is called when production setOprSymbol is entered.
func (s *BaseTiDBParserListener) EnterSetOprSymbol(ctx *SetOprSymbolContext) {}
// ExitSetOprSymbol is called when production setOprSymbol is exited.
func (s *BaseTiDBParserListener) ExitSetOprSymbol(ctx *SetOprSymbolContext) {}
// EnterSetOprOption is called when production setOprOption is entered.
func (s *BaseTiDBParserListener) EnterSetOprOption(ctx *SetOprOptionContext) {}
// ExitSetOprOption is called when production setOprOption is exited.
func (s *BaseTiDBParserListener) ExitSetOprOption(ctx *SetOprOptionContext) {}
// EnterTableAlias is called when production tableAlias is entered.
func (s *BaseTiDBParserListener) EnterTableAlias(ctx *TableAliasContext) {}
// ExitTableAlias is called when production tableAlias is exited.
func (s *BaseTiDBParserListener) ExitTableAlias(ctx *TableAliasContext) {}
// EnterIndexHintList is called when production indexHintList is entered.
func (s *BaseTiDBParserListener) EnterIndexHintList(ctx *IndexHintListContext) {}
// ExitIndexHintList is called when production indexHintList is exited.
func (s *BaseTiDBParserListener) ExitIndexHintList(ctx *IndexHintListContext) {}
// EnterIndexHint is called when production indexHint is entered.
func (s *BaseTiDBParserListener) EnterIndexHint(ctx *IndexHintContext) {}
// ExitIndexHint is called when production indexHint is exited.
func (s *BaseTiDBParserListener) ExitIndexHint(ctx *IndexHintContext) {}
// EnterIndexHintType is called when production indexHintType is entered.
func (s *BaseTiDBParserListener) EnterIndexHintType(ctx *IndexHintTypeContext) {}
// ExitIndexHintType is called when production indexHintType is exited.
func (s *BaseTiDBParserListener) ExitIndexHintType(ctx *IndexHintTypeContext) {}
// EnterKeyOrIndex is called when production keyOrIndex is entered.
func (s *BaseTiDBParserListener) EnterKeyOrIndex(ctx *KeyOrIndexContext) {}
// ExitKeyOrIndex is called when production keyOrIndex is exited.
func (s *BaseTiDBParserListener) ExitKeyOrIndex(ctx *KeyOrIndexContext) {}
// EnterConstraintKeyType is called when production constraintKeyType is entered.
func (s *BaseTiDBParserListener) EnterConstraintKeyType(ctx *ConstraintKeyTypeContext) {}
// ExitConstraintKeyType is called when production constraintKeyType is exited.
func (s *BaseTiDBParserListener) ExitConstraintKeyType(ctx *ConstraintKeyTypeContext) {}
// EnterIndexHintClause is called when production indexHintClause is entered.
func (s *BaseTiDBParserListener) EnterIndexHintClause(ctx *IndexHintClauseContext) {}
// ExitIndexHintClause is called when production indexHintClause is exited.
func (s *BaseTiDBParserListener) ExitIndexHintClause(ctx *IndexHintClauseContext) {}
// EnterIndexList is called when production indexList is entered.
func (s *BaseTiDBParserListener) EnterIndexList(ctx *IndexListContext) {}
// ExitIndexList is called when production indexList is exited.
func (s *BaseTiDBParserListener) ExitIndexList(ctx *IndexListContext) {}
// EnterIndexListElement is called when production indexListElement is entered.
func (s *BaseTiDBParserListener) EnterIndexListElement(ctx *IndexListElementContext) {}
// ExitIndexListElement is called when production indexListElement is exited.
func (s *BaseTiDBParserListener) ExitIndexListElement(ctx *IndexListElementContext) {}
// EnterUpdateStatement is called when production updateStatement is entered.
func (s *BaseTiDBParserListener) EnterUpdateStatement(ctx *UpdateStatementContext) {}
// ExitUpdateStatement is called when production updateStatement is exited.
func (s *BaseTiDBParserListener) ExitUpdateStatement(ctx *UpdateStatementContext) {}
// EnterTransactionOrLockingStatement is called when production transactionOrLockingStatement is entered.
func (s *BaseTiDBParserListener) EnterTransactionOrLockingStatement(ctx *TransactionOrLockingStatementContext) {
}
// ExitTransactionOrLockingStatement is called when production transactionOrLockingStatement is exited.
func (s *BaseTiDBParserListener) ExitTransactionOrLockingStatement(ctx *TransactionOrLockingStatementContext) {
}
// EnterTransactionStatement is called when production transactionStatement is entered.
func (s *BaseTiDBParserListener) EnterTransactionStatement(ctx *TransactionStatementContext) {}
// ExitTransactionStatement is called when production transactionStatement is exited.
func (s *BaseTiDBParserListener) ExitTransactionStatement(ctx *TransactionStatementContext) {}
// EnterBeginWork is called when production beginWork is entered.
func (s *BaseTiDBParserListener) EnterBeginWork(ctx *BeginWorkContext) {}
// ExitBeginWork is called when production beginWork is exited.
func (s *BaseTiDBParserListener) ExitBeginWork(ctx *BeginWorkContext) {}
// EnterTransactionCharacteristic is called when production transactionCharacteristic is entered.
func (s *BaseTiDBParserListener) EnterTransactionCharacteristic(ctx *TransactionCharacteristicContext) {
}
// ExitTransactionCharacteristic is called when production transactionCharacteristic is exited.
func (s *BaseTiDBParserListener) ExitTransactionCharacteristic(ctx *TransactionCharacteristicContext) {
}
// EnterSavepointStatement is called when production savepointStatement is entered.
func (s *BaseTiDBParserListener) EnterSavepointStatement(ctx *SavepointStatementContext) {}
// ExitSavepointStatement is called when production savepointStatement is exited.
func (s *BaseTiDBParserListener) ExitSavepointStatement(ctx *SavepointStatementContext) {}
// EnterLockStatement is called when production lockStatement is entered.
func (s *BaseTiDBParserListener) EnterLockStatement(ctx *LockStatementContext) {}
// ExitLockStatement is called when production lockStatement is exited.
func (s *BaseTiDBParserListener) ExitLockStatement(ctx *LockStatementContext) {}
// EnterLockItem is called when production lockItem is entered.
func (s *BaseTiDBParserListener) EnterLockItem(ctx *LockItemContext) {}
// ExitLockItem is called when production lockItem is exited.
func (s *BaseTiDBParserListener) ExitLockItem(ctx *LockItemContext) {}
// EnterLockOption is called when production lockOption is entered.
func (s *BaseTiDBParserListener) EnterLockOption(ctx *LockOptionContext) {}
// ExitLockOption is called when production lockOption is exited.
func (s *BaseTiDBParserListener) ExitLockOption(ctx *LockOptionContext) {}
// EnterXaStatement is called when production xaStatement is entered.
func (s *BaseTiDBParserListener) EnterXaStatement(ctx *XaStatementContext) {}
// ExitXaStatement is called when production xaStatement is exited.
func (s *BaseTiDBParserListener) ExitXaStatement(ctx *XaStatementContext) {}
// EnterXaConvert is called when production xaConvert is entered.
func (s *BaseTiDBParserListener) EnterXaConvert(ctx *XaConvertContext) {}
// ExitXaConvert is called when production xaConvert is exited.
func (s *BaseTiDBParserListener) ExitXaConvert(ctx *XaConvertContext) {}
// EnterXid is called when production xid is entered.
func (s *BaseTiDBParserListener) EnterXid(ctx *XidContext) {}
// ExitXid is called when production xid is exited.
func (s *BaseTiDBParserListener) ExitXid(ctx *XidContext) {}
// EnterReplicationStatement is called when production replicationStatement is entered.
func (s *BaseTiDBParserListener) EnterReplicationStatement(ctx *ReplicationStatementContext) {}
// ExitReplicationStatement is called when production replicationStatement is exited.
func (s *BaseTiDBParserListener) ExitReplicationStatement(ctx *ReplicationStatementContext) {}
// EnterResetOption is called when production resetOption is entered.
func (s *BaseTiDBParserListener) EnterResetOption(ctx *ResetOptionContext) {}
// ExitResetOption is called when production resetOption is exited.
func (s *BaseTiDBParserListener) ExitResetOption(ctx *ResetOptionContext) {}
// EnterMasterResetOptions is called when production masterResetOptions is entered.
func (s *BaseTiDBParserListener) EnterMasterResetOptions(ctx *MasterResetOptionsContext) {}
// ExitMasterResetOptions is called when production masterResetOptions is exited.
func (s *BaseTiDBParserListener) ExitMasterResetOptions(ctx *MasterResetOptionsContext) {}
// EnterReplicationLoad is called when production replicationLoad is entered.
func (s *BaseTiDBParserListener) EnterReplicationLoad(ctx *ReplicationLoadContext) {}
// ExitReplicationLoad is called when production replicationLoad is exited.
func (s *BaseTiDBParserListener) ExitReplicationLoad(ctx *ReplicationLoadContext) {}
// EnterChangeMaster is called when production changeMaster is entered.
func (s *BaseTiDBParserListener) EnterChangeMaster(ctx *ChangeMasterContext) {}
// ExitChangeMaster is called when production changeMaster is exited.
func (s *BaseTiDBParserListener) ExitChangeMaster(ctx *ChangeMasterContext) {}
// EnterChangeMasterOptions is called when production changeMasterOptions is entered.
func (s *BaseTiDBParserListener) EnterChangeMasterOptions(ctx *ChangeMasterOptionsContext) {}
// ExitChangeMasterOptions is called when production changeMasterOptions is exited.
func (s *BaseTiDBParserListener) ExitChangeMasterOptions(ctx *ChangeMasterOptionsContext) {}
// EnterMasterOption is called when production masterOption is entered.
func (s *BaseTiDBParserListener) EnterMasterOption(ctx *MasterOptionContext) {}
// ExitMasterOption is called when production masterOption is exited.
func (s *BaseTiDBParserListener) ExitMasterOption(ctx *MasterOptionContext) {}
// EnterPrivilegeCheckDef is called when production privilegeCheckDef is entered.
func (s *BaseTiDBParserListener) EnterPrivilegeCheckDef(ctx *PrivilegeCheckDefContext) {}
// ExitPrivilegeCheckDef is called when production privilegeCheckDef is exited.
func (s *BaseTiDBParserListener) ExitPrivilegeCheckDef(ctx *PrivilegeCheckDefContext) {}
// EnterTablePrimaryKeyCheckDef is called when production tablePrimaryKeyCheckDef is entered.
func (s *BaseTiDBParserListener) EnterTablePrimaryKeyCheckDef(ctx *TablePrimaryKeyCheckDefContext) {}
// ExitTablePrimaryKeyCheckDef is called when production tablePrimaryKeyCheckDef is exited.
func (s *BaseTiDBParserListener) ExitTablePrimaryKeyCheckDef(ctx *TablePrimaryKeyCheckDefContext) {}
// EnterMasterTlsCiphersuitesDef is called when production masterTlsCiphersuitesDef is entered.
func (s *BaseTiDBParserListener) EnterMasterTlsCiphersuitesDef(ctx *MasterTlsCiphersuitesDefContext) {
}
// ExitMasterTlsCiphersuitesDef is called when production masterTlsCiphersuitesDef is exited.
func (s *BaseTiDBParserListener) ExitMasterTlsCiphersuitesDef(ctx *MasterTlsCiphersuitesDefContext) {}
// EnterMasterFileDef is called when production masterFileDef is entered.
func (s *BaseTiDBParserListener) EnterMasterFileDef(ctx *MasterFileDefContext) {}
// ExitMasterFileDef is called when production masterFileDef is exited.
func (s *BaseTiDBParserListener) ExitMasterFileDef(ctx *MasterFileDefContext) {}
// EnterServerIdList is called when production serverIdList is entered.
func (s *BaseTiDBParserListener) EnterServerIdList(ctx *ServerIdListContext) {}
// ExitServerIdList is called when production serverIdList is exited.
func (s *BaseTiDBParserListener) ExitServerIdList(ctx *ServerIdListContext) {}
// EnterChangeReplication is called when production changeReplication is entered.
func (s *BaseTiDBParserListener) EnterChangeReplication(ctx *ChangeReplicationContext) {}
// ExitChangeReplication is called when production changeReplication is exited.
func (s *BaseTiDBParserListener) ExitChangeReplication(ctx *ChangeReplicationContext) {}
// EnterFilterDefinition is called when production filterDefinition is entered.
func (s *BaseTiDBParserListener) EnterFilterDefinition(ctx *FilterDefinitionContext) {}
// ExitFilterDefinition is called when production filterDefinition is exited.
func (s *BaseTiDBParserListener) ExitFilterDefinition(ctx *FilterDefinitionContext) {}
// EnterFilterDbList is called when production filterDbList is entered.
func (s *BaseTiDBParserListener) EnterFilterDbList(ctx *FilterDbListContext) {}
// ExitFilterDbList is called when production filterDbList is exited.
func (s *BaseTiDBParserListener) ExitFilterDbList(ctx *FilterDbListContext) {}
// EnterFilterTableList is called when production filterTableList is entered.
func (s *BaseTiDBParserListener) EnterFilterTableList(ctx *FilterTableListContext) {}
// ExitFilterTableList is called when production filterTableList is exited.
func (s *BaseTiDBParserListener) ExitFilterTableList(ctx *FilterTableListContext) {}
// EnterFilterStringList is called when production filterStringList is entered.
func (s *BaseTiDBParserListener) EnterFilterStringList(ctx *FilterStringListContext) {}
// ExitFilterStringList is called when production filterStringList is exited.
func (s *BaseTiDBParserListener) ExitFilterStringList(ctx *FilterStringListContext) {}
// EnterFilterWildDbTableString is called when production filterWildDbTableString is entered.
func (s *BaseTiDBParserListener) EnterFilterWildDbTableString(ctx *FilterWildDbTableStringContext) {}
// ExitFilterWildDbTableString is called when production filterWildDbTableString is exited.
func (s *BaseTiDBParserListener) ExitFilterWildDbTableString(ctx *FilterWildDbTableStringContext) {}
// EnterFilterDbPairList is called when production filterDbPairList is entered.
func (s *BaseTiDBParserListener) EnterFilterDbPairList(ctx *FilterDbPairListContext) {}
// ExitFilterDbPairList is called when production filterDbPairList is exited.
func (s *BaseTiDBParserListener) ExitFilterDbPairList(ctx *FilterDbPairListContext) {}
// EnterSlave is called when production slave is entered.
func (s *BaseTiDBParserListener) EnterSlave(ctx *SlaveContext) {}
// ExitSlave is called when production slave is exited.
func (s *BaseTiDBParserListener) ExitSlave(ctx *SlaveContext) {}
// EnterSlaveUntilOptions is called when production slaveUntilOptions is entered.
func (s *BaseTiDBParserListener) EnterSlaveUntilOptions(ctx *SlaveUntilOptionsContext) {}
// ExitSlaveUntilOptions is called when production slaveUntilOptions is exited.
func (s *BaseTiDBParserListener) ExitSlaveUntilOptions(ctx *SlaveUntilOptionsContext) {}
// EnterSlaveConnectionOptions is called when production slaveConnectionOptions is entered.
func (s *BaseTiDBParserListener) EnterSlaveConnectionOptions(ctx *SlaveConnectionOptionsContext) {}
// ExitSlaveConnectionOptions is called when production slaveConnectionOptions is exited.
func (s *BaseTiDBParserListener) ExitSlaveConnectionOptions(ctx *SlaveConnectionOptionsContext) {}
// EnterSlaveThreadOptions is called when production slaveThreadOptions is entered.
func (s *BaseTiDBParserListener) EnterSlaveThreadOptions(ctx *SlaveThreadOptionsContext) {}
// ExitSlaveThreadOptions is called when production slaveThreadOptions is exited.
func (s *BaseTiDBParserListener) ExitSlaveThreadOptions(ctx *SlaveThreadOptionsContext) {}
// EnterSlaveThreadOption is called when production slaveThreadOption is entered.
func (s *BaseTiDBParserListener) EnterSlaveThreadOption(ctx *SlaveThreadOptionContext) {}
// ExitSlaveThreadOption is called when production slaveThreadOption is exited.
func (s *BaseTiDBParserListener) ExitSlaveThreadOption(ctx *SlaveThreadOptionContext) {}
// EnterGroupReplication is called when production groupReplication is entered.
func (s *BaseTiDBParserListener) EnterGroupReplication(ctx *GroupReplicationContext) {}
// ExitGroupReplication is called when production groupReplication is exited.
func (s *BaseTiDBParserListener) ExitGroupReplication(ctx *GroupReplicationContext) {}
// EnterPreparedStatement is called when production preparedStatement is entered.
func (s *BaseTiDBParserListener) EnterPreparedStatement(ctx *PreparedStatementContext) {}
// ExitPreparedStatement is called when production preparedStatement is exited.
func (s *BaseTiDBParserListener) ExitPreparedStatement(ctx *PreparedStatementContext) {}
// EnterExecuteStatement is called when production executeStatement is entered.
func (s *BaseTiDBParserListener) EnterExecuteStatement(ctx *ExecuteStatementContext) {}
// ExitExecuteStatement is called when production executeStatement is exited.
func (s *BaseTiDBParserListener) ExitExecuteStatement(ctx *ExecuteStatementContext) {}
// EnterExecuteVarList is called when production executeVarList is entered.
func (s *BaseTiDBParserListener) EnterExecuteVarList(ctx *ExecuteVarListContext) {}
// ExitExecuteVarList is called when production executeVarList is exited.
func (s *BaseTiDBParserListener) ExitExecuteVarList(ctx *ExecuteVarListContext) {}
// EnterCloneStatement is called when production cloneStatement is entered.
func (s *BaseTiDBParserListener) EnterCloneStatement(ctx *CloneStatementContext) {}
// ExitCloneStatement is called when production cloneStatement is exited.
func (s *BaseTiDBParserListener) ExitCloneStatement(ctx *CloneStatementContext) {}
// EnterDataDirSSL is called when production dataDirSSL is entered.
func (s *BaseTiDBParserListener) EnterDataDirSSL(ctx *DataDirSSLContext) {}
// ExitDataDirSSL is called when production dataDirSSL is exited.
func (s *BaseTiDBParserListener) ExitDataDirSSL(ctx *DataDirSSLContext) {}
// EnterSsl is called when production ssl is entered.
func (s *BaseTiDBParserListener) EnterSsl(ctx *SslContext) {}
// ExitSsl is called when production ssl is exited.
func (s *BaseTiDBParserListener) ExitSsl(ctx *SslContext) {}
// EnterAccountManagementStatement is called when production accountManagementStatement is entered.
func (s *BaseTiDBParserListener) EnterAccountManagementStatement(ctx *AccountManagementStatementContext) {
}
// ExitAccountManagementStatement is called when production accountManagementStatement is exited.
func (s *BaseTiDBParserListener) ExitAccountManagementStatement(ctx *AccountManagementStatementContext) {
}
// EnterAlterUser is called when production alterUser is entered.
func (s *BaseTiDBParserListener) EnterAlterUser(ctx *AlterUserContext) {}
// ExitAlterUser is called when production alterUser is exited.
func (s *BaseTiDBParserListener) ExitAlterUser(ctx *AlterUserContext) {}
// EnterAlterUserTail is called when production alterUserTail is entered.
func (s *BaseTiDBParserListener) EnterAlterUserTail(ctx *AlterUserTailContext) {}
// ExitAlterUserTail is called when production alterUserTail is exited.
func (s *BaseTiDBParserListener) ExitAlterUserTail(ctx *AlterUserTailContext) {}
// EnterUserFunction is called when production userFunction is entered.
func (s *BaseTiDBParserListener) EnterUserFunction(ctx *UserFunctionContext) {}
// ExitUserFunction is called when production userFunction is exited.
func (s *BaseTiDBParserListener) ExitUserFunction(ctx *UserFunctionContext) {}
// EnterCreateUser is called when production createUser is entered.
func (s *BaseTiDBParserListener) EnterCreateUser(ctx *CreateUserContext) {}
// ExitCreateUser is called when production createUser is exited.
func (s *BaseTiDBParserListener) ExitCreateUser(ctx *CreateUserContext) {}
// EnterCreateUserTail is called when production createUserTail is entered.
func (s *BaseTiDBParserListener) EnterCreateUserTail(ctx *CreateUserTailContext) {}
// ExitCreateUserTail is called when production createUserTail is exited.
func (s *BaseTiDBParserListener) ExitCreateUserTail(ctx *CreateUserTailContext) {}
// EnterDefaultRoleClause is called when production defaultRoleClause is entered.
func (s *BaseTiDBParserListener) EnterDefaultRoleClause(ctx *DefaultRoleClauseContext) {}
// ExitDefaultRoleClause is called when production defaultRoleClause is exited.
func (s *BaseTiDBParserListener) ExitDefaultRoleClause(ctx *DefaultRoleClauseContext) {}
// EnterRequireClause is called when production requireClause is entered.
func (s *BaseTiDBParserListener) EnterRequireClause(ctx *RequireClauseContext) {}
// ExitRequireClause is called when production requireClause is exited.
func (s *BaseTiDBParserListener) ExitRequireClause(ctx *RequireClauseContext) {}
// EnterConnectOptions is called when production connectOptions is entered.
func (s *BaseTiDBParserListener) EnterConnectOptions(ctx *ConnectOptionsContext) {}
// ExitConnectOptions is called when production connectOptions is exited.
func (s *BaseTiDBParserListener) ExitConnectOptions(ctx *ConnectOptionsContext) {}
// EnterAccountLockPasswordExpireOptions is called when production accountLockPasswordExpireOptions is entered.
func (s *BaseTiDBParserListener) EnterAccountLockPasswordExpireOptions(ctx *AccountLockPasswordExpireOptionsContext) {
}
// ExitAccountLockPasswordExpireOptions is called when production accountLockPasswordExpireOptions is exited.
func (s *BaseTiDBParserListener) ExitAccountLockPasswordExpireOptions(ctx *AccountLockPasswordExpireOptionsContext) {
}
// EnterDropUser is called when production dropUser is entered.
func (s *BaseTiDBParserListener) EnterDropUser(ctx *DropUserContext) {}
// ExitDropUser is called when production dropUser is exited.
func (s *BaseTiDBParserListener) ExitDropUser(ctx *DropUserContext) {}
// EnterGrant is called when production grant is entered.
func (s *BaseTiDBParserListener) EnterGrant(ctx *GrantContext) {}
// ExitGrant is called when production grant is exited.
func (s *BaseTiDBParserListener) ExitGrant(ctx *GrantContext) {}
// EnterGrantTargetList is called when production grantTargetList is entered.
func (s *BaseTiDBParserListener) EnterGrantTargetList(ctx *GrantTargetListContext) {}
// ExitGrantTargetList is called when production grantTargetList is exited.
func (s *BaseTiDBParserListener) ExitGrantTargetList(ctx *GrantTargetListContext) {}