-
Notifications
You must be signed in to change notification settings - Fork 1
/
MySqlParserListener.py
5529 lines (3687 loc) · 193 KB
/
MySqlParserListener.py
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
# Generated from MySqlParser.g4 by ANTLR 4.13.0
from antlr4 import *
if "." in __name__:
from .MySqlParser import MySqlParser
else:
from MySqlParser import MySqlParser
# This class defines a complete listener for a parse tree produced by MySqlParser.
class MySqlParserListener(ParseTreeListener):
# Enter a parse tree produced by MySqlParser#root.
def enterRoot(self, ctx:MySqlParser.RootContext):
pass
# Exit a parse tree produced by MySqlParser#root.
def exitRoot(self, ctx:MySqlParser.RootContext):
pass
# Enter a parse tree produced by MySqlParser#sqlStatements.
def enterSqlStatements(self, ctx:MySqlParser.SqlStatementsContext):
pass
# Exit a parse tree produced by MySqlParser#sqlStatements.
def exitSqlStatements(self, ctx:MySqlParser.SqlStatementsContext):
pass
# Enter a parse tree produced by MySqlParser#sqlStatement.
def enterSqlStatement(self, ctx:MySqlParser.SqlStatementContext):
pass
# Exit a parse tree produced by MySqlParser#sqlStatement.
def exitSqlStatement(self, ctx:MySqlParser.SqlStatementContext):
pass
# Enter a parse tree produced by MySqlParser#emptyStatement_.
def enterEmptyStatement_(self, ctx:MySqlParser.EmptyStatement_Context):
pass
# Exit a parse tree produced by MySqlParser#emptyStatement_.
def exitEmptyStatement_(self, ctx:MySqlParser.EmptyStatement_Context):
pass
# Enter a parse tree produced by MySqlParser#ddlStatement.
def enterDdlStatement(self, ctx:MySqlParser.DdlStatementContext):
pass
# Exit a parse tree produced by MySqlParser#ddlStatement.
def exitDdlStatement(self, ctx:MySqlParser.DdlStatementContext):
pass
# Enter a parse tree produced by MySqlParser#dmlStatement.
def enterDmlStatement(self, ctx:MySqlParser.DmlStatementContext):
pass
# Exit a parse tree produced by MySqlParser#dmlStatement.
def exitDmlStatement(self, ctx:MySqlParser.DmlStatementContext):
pass
# Enter a parse tree produced by MySqlParser#transactionStatement.
def enterTransactionStatement(self, ctx:MySqlParser.TransactionStatementContext):
pass
# Exit a parse tree produced by MySqlParser#transactionStatement.
def exitTransactionStatement(self, ctx:MySqlParser.TransactionStatementContext):
pass
# Enter a parse tree produced by MySqlParser#replicationStatement.
def enterReplicationStatement(self, ctx:MySqlParser.ReplicationStatementContext):
pass
# Exit a parse tree produced by MySqlParser#replicationStatement.
def exitReplicationStatement(self, ctx:MySqlParser.ReplicationStatementContext):
pass
# Enter a parse tree produced by MySqlParser#preparedStatement.
def enterPreparedStatement(self, ctx:MySqlParser.PreparedStatementContext):
pass
# Exit a parse tree produced by MySqlParser#preparedStatement.
def exitPreparedStatement(self, ctx:MySqlParser.PreparedStatementContext):
pass
# Enter a parse tree produced by MySqlParser#compoundStatement.
def enterCompoundStatement(self, ctx:MySqlParser.CompoundStatementContext):
pass
# Exit a parse tree produced by MySqlParser#compoundStatement.
def exitCompoundStatement(self, ctx:MySqlParser.CompoundStatementContext):
pass
# Enter a parse tree produced by MySqlParser#administrationStatement.
def enterAdministrationStatement(self, ctx:MySqlParser.AdministrationStatementContext):
pass
# Exit a parse tree produced by MySqlParser#administrationStatement.
def exitAdministrationStatement(self, ctx:MySqlParser.AdministrationStatementContext):
pass
# Enter a parse tree produced by MySqlParser#utilityStatement.
def enterUtilityStatement(self, ctx:MySqlParser.UtilityStatementContext):
pass
# Exit a parse tree produced by MySqlParser#utilityStatement.
def exitUtilityStatement(self, ctx:MySqlParser.UtilityStatementContext):
pass
# Enter a parse tree produced by MySqlParser#createDatabase.
def enterCreateDatabase(self, ctx:MySqlParser.CreateDatabaseContext):
pass
# Exit a parse tree produced by MySqlParser#createDatabase.
def exitCreateDatabase(self, ctx:MySqlParser.CreateDatabaseContext):
pass
# Enter a parse tree produced by MySqlParser#createEvent.
def enterCreateEvent(self, ctx:MySqlParser.CreateEventContext):
pass
# Exit a parse tree produced by MySqlParser#createEvent.
def exitCreateEvent(self, ctx:MySqlParser.CreateEventContext):
pass
# Enter a parse tree produced by MySqlParser#createIndex.
def enterCreateIndex(self, ctx:MySqlParser.CreateIndexContext):
pass
# Exit a parse tree produced by MySqlParser#createIndex.
def exitCreateIndex(self, ctx:MySqlParser.CreateIndexContext):
pass
# Enter a parse tree produced by MySqlParser#createLogfileGroup.
def enterCreateLogfileGroup(self, ctx:MySqlParser.CreateLogfileGroupContext):
pass
# Exit a parse tree produced by MySqlParser#createLogfileGroup.
def exitCreateLogfileGroup(self, ctx:MySqlParser.CreateLogfileGroupContext):
pass
# Enter a parse tree produced by MySqlParser#createProcedure.
def enterCreateProcedure(self, ctx:MySqlParser.CreateProcedureContext):
pass
# Exit a parse tree produced by MySqlParser#createProcedure.
def exitCreateProcedure(self, ctx:MySqlParser.CreateProcedureContext):
pass
# Enter a parse tree produced by MySqlParser#createFunction.
def enterCreateFunction(self, ctx:MySqlParser.CreateFunctionContext):
pass
# Exit a parse tree produced by MySqlParser#createFunction.
def exitCreateFunction(self, ctx:MySqlParser.CreateFunctionContext):
pass
# Enter a parse tree produced by MySqlParser#createRole.
def enterCreateRole(self, ctx:MySqlParser.CreateRoleContext):
pass
# Exit a parse tree produced by MySqlParser#createRole.
def exitCreateRole(self, ctx:MySqlParser.CreateRoleContext):
pass
# Enter a parse tree produced by MySqlParser#createServer.
def enterCreateServer(self, ctx:MySqlParser.CreateServerContext):
pass
# Exit a parse tree produced by MySqlParser#createServer.
def exitCreateServer(self, ctx:MySqlParser.CreateServerContext):
pass
# Enter a parse tree produced by MySqlParser#copyCreateTable.
def enterCopyCreateTable(self, ctx:MySqlParser.CopyCreateTableContext):
pass
# Exit a parse tree produced by MySqlParser#copyCreateTable.
def exitCopyCreateTable(self, ctx:MySqlParser.CopyCreateTableContext):
pass
# Enter a parse tree produced by MySqlParser#queryCreateTable.
def enterQueryCreateTable(self, ctx:MySqlParser.QueryCreateTableContext):
pass
# Exit a parse tree produced by MySqlParser#queryCreateTable.
def exitQueryCreateTable(self, ctx:MySqlParser.QueryCreateTableContext):
pass
# Enter a parse tree produced by MySqlParser#columnCreateTable.
def enterColumnCreateTable(self, ctx:MySqlParser.ColumnCreateTableContext):
pass
# Exit a parse tree produced by MySqlParser#columnCreateTable.
def exitColumnCreateTable(self, ctx:MySqlParser.ColumnCreateTableContext):
pass
# Enter a parse tree produced by MySqlParser#createTablespaceInnodb.
def enterCreateTablespaceInnodb(self, ctx:MySqlParser.CreateTablespaceInnodbContext):
pass
# Exit a parse tree produced by MySqlParser#createTablespaceInnodb.
def exitCreateTablespaceInnodb(self, ctx:MySqlParser.CreateTablespaceInnodbContext):
pass
# Enter a parse tree produced by MySqlParser#createTablespaceNdb.
def enterCreateTablespaceNdb(self, ctx:MySqlParser.CreateTablespaceNdbContext):
pass
# Exit a parse tree produced by MySqlParser#createTablespaceNdb.
def exitCreateTablespaceNdb(self, ctx:MySqlParser.CreateTablespaceNdbContext):
pass
# Enter a parse tree produced by MySqlParser#createTrigger.
def enterCreateTrigger(self, ctx:MySqlParser.CreateTriggerContext):
pass
# Exit a parse tree produced by MySqlParser#createTrigger.
def exitCreateTrigger(self, ctx:MySqlParser.CreateTriggerContext):
pass
# Enter a parse tree produced by MySqlParser#withClause.
def enterWithClause(self, ctx:MySqlParser.WithClauseContext):
pass
# Exit a parse tree produced by MySqlParser#withClause.
def exitWithClause(self, ctx:MySqlParser.WithClauseContext):
pass
# Enter a parse tree produced by MySqlParser#commonTableExpressions.
def enterCommonTableExpressions(self, ctx:MySqlParser.CommonTableExpressionsContext):
pass
# Exit a parse tree produced by MySqlParser#commonTableExpressions.
def exitCommonTableExpressions(self, ctx:MySqlParser.CommonTableExpressionsContext):
pass
# Enter a parse tree produced by MySqlParser#cteName.
def enterCteName(self, ctx:MySqlParser.CteNameContext):
pass
# Exit a parse tree produced by MySqlParser#cteName.
def exitCteName(self, ctx:MySqlParser.CteNameContext):
pass
# Enter a parse tree produced by MySqlParser#cteColumnName.
def enterCteColumnName(self, ctx:MySqlParser.CteColumnNameContext):
pass
# Exit a parse tree produced by MySqlParser#cteColumnName.
def exitCteColumnName(self, ctx:MySqlParser.CteColumnNameContext):
pass
# Enter a parse tree produced by MySqlParser#createView.
def enterCreateView(self, ctx:MySqlParser.CreateViewContext):
pass
# Exit a parse tree produced by MySqlParser#createView.
def exitCreateView(self, ctx:MySqlParser.CreateViewContext):
pass
# Enter a parse tree produced by MySqlParser#createDatabaseOption.
def enterCreateDatabaseOption(self, ctx:MySqlParser.CreateDatabaseOptionContext):
pass
# Exit a parse tree produced by MySqlParser#createDatabaseOption.
def exitCreateDatabaseOption(self, ctx:MySqlParser.CreateDatabaseOptionContext):
pass
# Enter a parse tree produced by MySqlParser#charSet.
def enterCharSet(self, ctx:MySqlParser.CharSetContext):
pass
# Exit a parse tree produced by MySqlParser#charSet.
def exitCharSet(self, ctx:MySqlParser.CharSetContext):
pass
# Enter a parse tree produced by MySqlParser#ownerStatement.
def enterOwnerStatement(self, ctx:MySqlParser.OwnerStatementContext):
pass
# Exit a parse tree produced by MySqlParser#ownerStatement.
def exitOwnerStatement(self, ctx:MySqlParser.OwnerStatementContext):
pass
# Enter a parse tree produced by MySqlParser#preciseSchedule.
def enterPreciseSchedule(self, ctx:MySqlParser.PreciseScheduleContext):
pass
# Exit a parse tree produced by MySqlParser#preciseSchedule.
def exitPreciseSchedule(self, ctx:MySqlParser.PreciseScheduleContext):
pass
# Enter a parse tree produced by MySqlParser#intervalSchedule.
def enterIntervalSchedule(self, ctx:MySqlParser.IntervalScheduleContext):
pass
# Exit a parse tree produced by MySqlParser#intervalSchedule.
def exitIntervalSchedule(self, ctx:MySqlParser.IntervalScheduleContext):
pass
# Enter a parse tree produced by MySqlParser#timestampValue.
def enterTimestampValue(self, ctx:MySqlParser.TimestampValueContext):
pass
# Exit a parse tree produced by MySqlParser#timestampValue.
def exitTimestampValue(self, ctx:MySqlParser.TimestampValueContext):
pass
# Enter a parse tree produced by MySqlParser#intervalExpr.
def enterIntervalExpr(self, ctx:MySqlParser.IntervalExprContext):
pass
# Exit a parse tree produced by MySqlParser#intervalExpr.
def exitIntervalExpr(self, ctx:MySqlParser.IntervalExprContext):
pass
# Enter a parse tree produced by MySqlParser#intervalType.
def enterIntervalType(self, ctx:MySqlParser.IntervalTypeContext):
pass
# Exit a parse tree produced by MySqlParser#intervalType.
def exitIntervalType(self, ctx:MySqlParser.IntervalTypeContext):
pass
# Enter a parse tree produced by MySqlParser#enableType.
def enterEnableType(self, ctx:MySqlParser.EnableTypeContext):
pass
# Exit a parse tree produced by MySqlParser#enableType.
def exitEnableType(self, ctx:MySqlParser.EnableTypeContext):
pass
# Enter a parse tree produced by MySqlParser#indexType.
def enterIndexType(self, ctx:MySqlParser.IndexTypeContext):
pass
# Exit a parse tree produced by MySqlParser#indexType.
def exitIndexType(self, ctx:MySqlParser.IndexTypeContext):
pass
# Enter a parse tree produced by MySqlParser#indexOption.
def enterIndexOption(self, ctx:MySqlParser.IndexOptionContext):
pass
# Exit a parse tree produced by MySqlParser#indexOption.
def exitIndexOption(self, ctx:MySqlParser.IndexOptionContext):
pass
# Enter a parse tree produced by MySqlParser#procedureParameter.
def enterProcedureParameter(self, ctx:MySqlParser.ProcedureParameterContext):
pass
# Exit a parse tree produced by MySqlParser#procedureParameter.
def exitProcedureParameter(self, ctx:MySqlParser.ProcedureParameterContext):
pass
# Enter a parse tree produced by MySqlParser#functionParameter.
def enterFunctionParameter(self, ctx:MySqlParser.FunctionParameterContext):
pass
# Exit a parse tree produced by MySqlParser#functionParameter.
def exitFunctionParameter(self, ctx:MySqlParser.FunctionParameterContext):
pass
# Enter a parse tree produced by MySqlParser#routineComment.
def enterRoutineComment(self, ctx:MySqlParser.RoutineCommentContext):
pass
# Exit a parse tree produced by MySqlParser#routineComment.
def exitRoutineComment(self, ctx:MySqlParser.RoutineCommentContext):
pass
# Enter a parse tree produced by MySqlParser#routineLanguage.
def enterRoutineLanguage(self, ctx:MySqlParser.RoutineLanguageContext):
pass
# Exit a parse tree produced by MySqlParser#routineLanguage.
def exitRoutineLanguage(self, ctx:MySqlParser.RoutineLanguageContext):
pass
# Enter a parse tree produced by MySqlParser#routineBehavior.
def enterRoutineBehavior(self, ctx:MySqlParser.RoutineBehaviorContext):
pass
# Exit a parse tree produced by MySqlParser#routineBehavior.
def exitRoutineBehavior(self, ctx:MySqlParser.RoutineBehaviorContext):
pass
# Enter a parse tree produced by MySqlParser#routineData.
def enterRoutineData(self, ctx:MySqlParser.RoutineDataContext):
pass
# Exit a parse tree produced by MySqlParser#routineData.
def exitRoutineData(self, ctx:MySqlParser.RoutineDataContext):
pass
# Enter a parse tree produced by MySqlParser#routineSecurity.
def enterRoutineSecurity(self, ctx:MySqlParser.RoutineSecurityContext):
pass
# Exit a parse tree produced by MySqlParser#routineSecurity.
def exitRoutineSecurity(self, ctx:MySqlParser.RoutineSecurityContext):
pass
# Enter a parse tree produced by MySqlParser#serverOption.
def enterServerOption(self, ctx:MySqlParser.ServerOptionContext):
pass
# Exit a parse tree produced by MySqlParser#serverOption.
def exitServerOption(self, ctx:MySqlParser.ServerOptionContext):
pass
# Enter a parse tree produced by MySqlParser#createDefinitions.
def enterCreateDefinitions(self, ctx:MySqlParser.CreateDefinitionsContext):
pass
# Exit a parse tree produced by MySqlParser#createDefinitions.
def exitCreateDefinitions(self, ctx:MySqlParser.CreateDefinitionsContext):
pass
# Enter a parse tree produced by MySqlParser#columnDeclaration.
def enterColumnDeclaration(self, ctx:MySqlParser.ColumnDeclarationContext):
pass
# Exit a parse tree produced by MySqlParser#columnDeclaration.
def exitColumnDeclaration(self, ctx:MySqlParser.ColumnDeclarationContext):
pass
# Enter a parse tree produced by MySqlParser#constraintDeclaration.
def enterConstraintDeclaration(self, ctx:MySqlParser.ConstraintDeclarationContext):
pass
# Exit a parse tree produced by MySqlParser#constraintDeclaration.
def exitConstraintDeclaration(self, ctx:MySqlParser.ConstraintDeclarationContext):
pass
# Enter a parse tree produced by MySqlParser#indexDeclaration.
def enterIndexDeclaration(self, ctx:MySqlParser.IndexDeclarationContext):
pass
# Exit a parse tree produced by MySqlParser#indexDeclaration.
def exitIndexDeclaration(self, ctx:MySqlParser.IndexDeclarationContext):
pass
# Enter a parse tree produced by MySqlParser#columnDefinition.
def enterColumnDefinition(self, ctx:MySqlParser.ColumnDefinitionContext):
pass
# Exit a parse tree produced by MySqlParser#columnDefinition.
def exitColumnDefinition(self, ctx:MySqlParser.ColumnDefinitionContext):
pass
# Enter a parse tree produced by MySqlParser#nullColumnConstraint.
def enterNullColumnConstraint(self, ctx:MySqlParser.NullColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#nullColumnConstraint.
def exitNullColumnConstraint(self, ctx:MySqlParser.NullColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#defaultColumnConstraint.
def enterDefaultColumnConstraint(self, ctx:MySqlParser.DefaultColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#defaultColumnConstraint.
def exitDefaultColumnConstraint(self, ctx:MySqlParser.DefaultColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#visibilityColumnConstraint.
def enterVisibilityColumnConstraint(self, ctx:MySqlParser.VisibilityColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#visibilityColumnConstraint.
def exitVisibilityColumnConstraint(self, ctx:MySqlParser.VisibilityColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#invisibilityColumnConstraint.
def enterInvisibilityColumnConstraint(self, ctx:MySqlParser.InvisibilityColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#invisibilityColumnConstraint.
def exitInvisibilityColumnConstraint(self, ctx:MySqlParser.InvisibilityColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#autoIncrementColumnConstraint.
def enterAutoIncrementColumnConstraint(self, ctx:MySqlParser.AutoIncrementColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#autoIncrementColumnConstraint.
def exitAutoIncrementColumnConstraint(self, ctx:MySqlParser.AutoIncrementColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#primaryKeyColumnConstraint.
def enterPrimaryKeyColumnConstraint(self, ctx:MySqlParser.PrimaryKeyColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#primaryKeyColumnConstraint.
def exitPrimaryKeyColumnConstraint(self, ctx:MySqlParser.PrimaryKeyColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#uniqueKeyColumnConstraint.
def enterUniqueKeyColumnConstraint(self, ctx:MySqlParser.UniqueKeyColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#uniqueKeyColumnConstraint.
def exitUniqueKeyColumnConstraint(self, ctx:MySqlParser.UniqueKeyColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#commentColumnConstraint.
def enterCommentColumnConstraint(self, ctx:MySqlParser.CommentColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#commentColumnConstraint.
def exitCommentColumnConstraint(self, ctx:MySqlParser.CommentColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#formatColumnConstraint.
def enterFormatColumnConstraint(self, ctx:MySqlParser.FormatColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#formatColumnConstraint.
def exitFormatColumnConstraint(self, ctx:MySqlParser.FormatColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#storageColumnConstraint.
def enterStorageColumnConstraint(self, ctx:MySqlParser.StorageColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#storageColumnConstraint.
def exitStorageColumnConstraint(self, ctx:MySqlParser.StorageColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#referenceColumnConstraint.
def enterReferenceColumnConstraint(self, ctx:MySqlParser.ReferenceColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#referenceColumnConstraint.
def exitReferenceColumnConstraint(self, ctx:MySqlParser.ReferenceColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#collateColumnConstraint.
def enterCollateColumnConstraint(self, ctx:MySqlParser.CollateColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#collateColumnConstraint.
def exitCollateColumnConstraint(self, ctx:MySqlParser.CollateColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#generatedColumnConstraint.
def enterGeneratedColumnConstraint(self, ctx:MySqlParser.GeneratedColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#generatedColumnConstraint.
def exitGeneratedColumnConstraint(self, ctx:MySqlParser.GeneratedColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#serialDefaultColumnConstraint.
def enterSerialDefaultColumnConstraint(self, ctx:MySqlParser.SerialDefaultColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#serialDefaultColumnConstraint.
def exitSerialDefaultColumnConstraint(self, ctx:MySqlParser.SerialDefaultColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#checkColumnConstraint.
def enterCheckColumnConstraint(self, ctx:MySqlParser.CheckColumnConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#checkColumnConstraint.
def exitCheckColumnConstraint(self, ctx:MySqlParser.CheckColumnConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#primaryKeyTableConstraint.
def enterPrimaryKeyTableConstraint(self, ctx:MySqlParser.PrimaryKeyTableConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#primaryKeyTableConstraint.
def exitPrimaryKeyTableConstraint(self, ctx:MySqlParser.PrimaryKeyTableConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#uniqueKeyTableConstraint.
def enterUniqueKeyTableConstraint(self, ctx:MySqlParser.UniqueKeyTableConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#uniqueKeyTableConstraint.
def exitUniqueKeyTableConstraint(self, ctx:MySqlParser.UniqueKeyTableConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#foreignKeyTableConstraint.
def enterForeignKeyTableConstraint(self, ctx:MySqlParser.ForeignKeyTableConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#foreignKeyTableConstraint.
def exitForeignKeyTableConstraint(self, ctx:MySqlParser.ForeignKeyTableConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#checkTableConstraint.
def enterCheckTableConstraint(self, ctx:MySqlParser.CheckTableConstraintContext):
pass
# Exit a parse tree produced by MySqlParser#checkTableConstraint.
def exitCheckTableConstraint(self, ctx:MySqlParser.CheckTableConstraintContext):
pass
# Enter a parse tree produced by MySqlParser#referenceDefinition.
def enterReferenceDefinition(self, ctx:MySqlParser.ReferenceDefinitionContext):
pass
# Exit a parse tree produced by MySqlParser#referenceDefinition.
def exitReferenceDefinition(self, ctx:MySqlParser.ReferenceDefinitionContext):
pass
# Enter a parse tree produced by MySqlParser#referenceAction.
def enterReferenceAction(self, ctx:MySqlParser.ReferenceActionContext):
pass
# Exit a parse tree produced by MySqlParser#referenceAction.
def exitReferenceAction(self, ctx:MySqlParser.ReferenceActionContext):
pass
# Enter a parse tree produced by MySqlParser#referenceControlType.
def enterReferenceControlType(self, ctx:MySqlParser.ReferenceControlTypeContext):
pass
# Exit a parse tree produced by MySqlParser#referenceControlType.
def exitReferenceControlType(self, ctx:MySqlParser.ReferenceControlTypeContext):
pass
# Enter a parse tree produced by MySqlParser#simpleIndexDeclaration.
def enterSimpleIndexDeclaration(self, ctx:MySqlParser.SimpleIndexDeclarationContext):
pass
# Exit a parse tree produced by MySqlParser#simpleIndexDeclaration.
def exitSimpleIndexDeclaration(self, ctx:MySqlParser.SimpleIndexDeclarationContext):
pass
# Enter a parse tree produced by MySqlParser#specialIndexDeclaration.
def enterSpecialIndexDeclaration(self, ctx:MySqlParser.SpecialIndexDeclarationContext):
pass
# Exit a parse tree produced by MySqlParser#specialIndexDeclaration.
def exitSpecialIndexDeclaration(self, ctx:MySqlParser.SpecialIndexDeclarationContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionEngine.
def enterTableOptionEngine(self, ctx:MySqlParser.TableOptionEngineContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionEngine.
def exitTableOptionEngine(self, ctx:MySqlParser.TableOptionEngineContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionEngineAttribute.
def enterTableOptionEngineAttribute(self, ctx:MySqlParser.TableOptionEngineAttributeContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionEngineAttribute.
def exitTableOptionEngineAttribute(self, ctx:MySqlParser.TableOptionEngineAttributeContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionAutoextendSize.
def enterTableOptionAutoextendSize(self, ctx:MySqlParser.TableOptionAutoextendSizeContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionAutoextendSize.
def exitTableOptionAutoextendSize(self, ctx:MySqlParser.TableOptionAutoextendSizeContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionAutoIncrement.
def enterTableOptionAutoIncrement(self, ctx:MySqlParser.TableOptionAutoIncrementContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionAutoIncrement.
def exitTableOptionAutoIncrement(self, ctx:MySqlParser.TableOptionAutoIncrementContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionAverage.
def enterTableOptionAverage(self, ctx:MySqlParser.TableOptionAverageContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionAverage.
def exitTableOptionAverage(self, ctx:MySqlParser.TableOptionAverageContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionCharset.
def enterTableOptionCharset(self, ctx:MySqlParser.TableOptionCharsetContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionCharset.
def exitTableOptionCharset(self, ctx:MySqlParser.TableOptionCharsetContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionChecksum.
def enterTableOptionChecksum(self, ctx:MySqlParser.TableOptionChecksumContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionChecksum.
def exitTableOptionChecksum(self, ctx:MySqlParser.TableOptionChecksumContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionCollate.
def enterTableOptionCollate(self, ctx:MySqlParser.TableOptionCollateContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionCollate.
def exitTableOptionCollate(self, ctx:MySqlParser.TableOptionCollateContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionComment.
def enterTableOptionComment(self, ctx:MySqlParser.TableOptionCommentContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionComment.
def exitTableOptionComment(self, ctx:MySqlParser.TableOptionCommentContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionCompression.
def enterTableOptionCompression(self, ctx:MySqlParser.TableOptionCompressionContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionCompression.
def exitTableOptionCompression(self, ctx:MySqlParser.TableOptionCompressionContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionConnection.
def enterTableOptionConnection(self, ctx:MySqlParser.TableOptionConnectionContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionConnection.
def exitTableOptionConnection(self, ctx:MySqlParser.TableOptionConnectionContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionDataDirectory.
def enterTableOptionDataDirectory(self, ctx:MySqlParser.TableOptionDataDirectoryContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionDataDirectory.
def exitTableOptionDataDirectory(self, ctx:MySqlParser.TableOptionDataDirectoryContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionDelay.
def enterTableOptionDelay(self, ctx:MySqlParser.TableOptionDelayContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionDelay.
def exitTableOptionDelay(self, ctx:MySqlParser.TableOptionDelayContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionEncryption.
def enterTableOptionEncryption(self, ctx:MySqlParser.TableOptionEncryptionContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionEncryption.
def exitTableOptionEncryption(self, ctx:MySqlParser.TableOptionEncryptionContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionPageCompressed.
def enterTableOptionPageCompressed(self, ctx:MySqlParser.TableOptionPageCompressedContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionPageCompressed.
def exitTableOptionPageCompressed(self, ctx:MySqlParser.TableOptionPageCompressedContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionPageCompressionLevel.
def enterTableOptionPageCompressionLevel(self, ctx:MySqlParser.TableOptionPageCompressionLevelContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionPageCompressionLevel.
def exitTableOptionPageCompressionLevel(self, ctx:MySqlParser.TableOptionPageCompressionLevelContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionEncryptionKeyId.
def enterTableOptionEncryptionKeyId(self, ctx:MySqlParser.TableOptionEncryptionKeyIdContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionEncryptionKeyId.
def exitTableOptionEncryptionKeyId(self, ctx:MySqlParser.TableOptionEncryptionKeyIdContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionIndexDirectory.
def enterTableOptionIndexDirectory(self, ctx:MySqlParser.TableOptionIndexDirectoryContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionIndexDirectory.
def exitTableOptionIndexDirectory(self, ctx:MySqlParser.TableOptionIndexDirectoryContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionInsertMethod.
def enterTableOptionInsertMethod(self, ctx:MySqlParser.TableOptionInsertMethodContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionInsertMethod.
def exitTableOptionInsertMethod(self, ctx:MySqlParser.TableOptionInsertMethodContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionKeyBlockSize.
def enterTableOptionKeyBlockSize(self, ctx:MySqlParser.TableOptionKeyBlockSizeContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionKeyBlockSize.
def exitTableOptionKeyBlockSize(self, ctx:MySqlParser.TableOptionKeyBlockSizeContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionMaxRows.
def enterTableOptionMaxRows(self, ctx:MySqlParser.TableOptionMaxRowsContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionMaxRows.
def exitTableOptionMaxRows(self, ctx:MySqlParser.TableOptionMaxRowsContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionMinRows.
def enterTableOptionMinRows(self, ctx:MySqlParser.TableOptionMinRowsContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionMinRows.
def exitTableOptionMinRows(self, ctx:MySqlParser.TableOptionMinRowsContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionPackKeys.
def enterTableOptionPackKeys(self, ctx:MySqlParser.TableOptionPackKeysContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionPackKeys.
def exitTableOptionPackKeys(self, ctx:MySqlParser.TableOptionPackKeysContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionPassword.
def enterTableOptionPassword(self, ctx:MySqlParser.TableOptionPasswordContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionPassword.
def exitTableOptionPassword(self, ctx:MySqlParser.TableOptionPasswordContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionRowFormat.
def enterTableOptionRowFormat(self, ctx:MySqlParser.TableOptionRowFormatContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionRowFormat.
def exitTableOptionRowFormat(self, ctx:MySqlParser.TableOptionRowFormatContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionStartTransaction.
def enterTableOptionStartTransaction(self, ctx:MySqlParser.TableOptionStartTransactionContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionStartTransaction.
def exitTableOptionStartTransaction(self, ctx:MySqlParser.TableOptionStartTransactionContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionSecondaryEngineAttribute.
def enterTableOptionSecondaryEngineAttribute(self, ctx:MySqlParser.TableOptionSecondaryEngineAttributeContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionSecondaryEngineAttribute.
def exitTableOptionSecondaryEngineAttribute(self, ctx:MySqlParser.TableOptionSecondaryEngineAttributeContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionRecalculation.
def enterTableOptionRecalculation(self, ctx:MySqlParser.TableOptionRecalculationContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionRecalculation.
def exitTableOptionRecalculation(self, ctx:MySqlParser.TableOptionRecalculationContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionPersistent.
def enterTableOptionPersistent(self, ctx:MySqlParser.TableOptionPersistentContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionPersistent.
def exitTableOptionPersistent(self, ctx:MySqlParser.TableOptionPersistentContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionSamplePage.
def enterTableOptionSamplePage(self, ctx:MySqlParser.TableOptionSamplePageContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionSamplePage.
def exitTableOptionSamplePage(self, ctx:MySqlParser.TableOptionSamplePageContext):
pass
# Enter a parse tree produced by MySqlParser#tableOptionTablespace.
def enterTableOptionTablespace(self, ctx:MySqlParser.TableOptionTablespaceContext):
pass
# Exit a parse tree produced by MySqlParser#tableOptionTablespace.
def exitTableOptionTablespace(self, ctx:MySqlParser.TableOptionTablespaceContext):
pass