-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsqlparser_base_listener.go
5189 lines (3546 loc) · 271 KB
/
tsqlparser_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 TSqlParser.g4 by ANTLR 4.13.1. DO NOT EDIT.
package parser // TSqlParser
import "github.com/antlr4-go/antlr/v4"
// BaseTSqlParserListener is a complete listener for a parse tree produced by TSqlParser.
type BaseTSqlParserListener struct{}
var _ TSqlParserListener = &BaseTSqlParserListener{}
// VisitTerminal is called when a terminal node is visited.
func (s *BaseTSqlParserListener) VisitTerminal(node antlr.TerminalNode) {}
// VisitErrorNode is called when an error node is visited.
func (s *BaseTSqlParserListener) VisitErrorNode(node antlr.ErrorNode) {}
// EnterEveryRule is called when any rule is entered.
func (s *BaseTSqlParserListener) EnterEveryRule(ctx antlr.ParserRuleContext) {}
// ExitEveryRule is called when any rule is exited.
func (s *BaseTSqlParserListener) ExitEveryRule(ctx antlr.ParserRuleContext) {}
// EnterTsql_file is called when production tsql_file is entered.
func (s *BaseTSqlParserListener) EnterTsql_file(ctx *Tsql_fileContext) {}
// ExitTsql_file is called when production tsql_file is exited.
func (s *BaseTSqlParserListener) ExitTsql_file(ctx *Tsql_fileContext) {}
// EnterBatch_without_go is called when production batch_without_go is entered.
func (s *BaseTSqlParserListener) EnterBatch_without_go(ctx *Batch_without_goContext) {}
// ExitBatch_without_go is called when production batch_without_go is exited.
func (s *BaseTSqlParserListener) ExitBatch_without_go(ctx *Batch_without_goContext) {}
// EnterBatch_level_statement is called when production batch_level_statement is entered.
func (s *BaseTSqlParserListener) EnterBatch_level_statement(ctx *Batch_level_statementContext) {}
// ExitBatch_level_statement is called when production batch_level_statement is exited.
func (s *BaseTSqlParserListener) ExitBatch_level_statement(ctx *Batch_level_statementContext) {}
// EnterSql_clauses is called when production sql_clauses is entered.
func (s *BaseTSqlParserListener) EnterSql_clauses(ctx *Sql_clausesContext) {}
// ExitSql_clauses is called when production sql_clauses is exited.
func (s *BaseTSqlParserListener) ExitSql_clauses(ctx *Sql_clausesContext) {}
// EnterDml_clause is called when production dml_clause is entered.
func (s *BaseTSqlParserListener) EnterDml_clause(ctx *Dml_clauseContext) {}
// ExitDml_clause is called when production dml_clause is exited.
func (s *BaseTSqlParserListener) ExitDml_clause(ctx *Dml_clauseContext) {}
// EnterDdl_clause is called when production ddl_clause is entered.
func (s *BaseTSqlParserListener) EnterDdl_clause(ctx *Ddl_clauseContext) {}
// ExitDdl_clause is called when production ddl_clause is exited.
func (s *BaseTSqlParserListener) ExitDdl_clause(ctx *Ddl_clauseContext) {}
// EnterBackup_statement is called when production backup_statement is entered.
func (s *BaseTSqlParserListener) EnterBackup_statement(ctx *Backup_statementContext) {}
// ExitBackup_statement is called when production backup_statement is exited.
func (s *BaseTSqlParserListener) ExitBackup_statement(ctx *Backup_statementContext) {}
// EnterCfl_statement is called when production cfl_statement is entered.
func (s *BaseTSqlParserListener) EnterCfl_statement(ctx *Cfl_statementContext) {}
// ExitCfl_statement is called when production cfl_statement is exited.
func (s *BaseTSqlParserListener) ExitCfl_statement(ctx *Cfl_statementContext) {}
// EnterBlock_statement is called when production block_statement is entered.
func (s *BaseTSqlParserListener) EnterBlock_statement(ctx *Block_statementContext) {}
// ExitBlock_statement is called when production block_statement is exited.
func (s *BaseTSqlParserListener) ExitBlock_statement(ctx *Block_statementContext) {}
// EnterBreak_statement is called when production break_statement is entered.
func (s *BaseTSqlParserListener) EnterBreak_statement(ctx *Break_statementContext) {}
// ExitBreak_statement is called when production break_statement is exited.
func (s *BaseTSqlParserListener) ExitBreak_statement(ctx *Break_statementContext) {}
// EnterContinue_statement is called when production continue_statement is entered.
func (s *BaseTSqlParserListener) EnterContinue_statement(ctx *Continue_statementContext) {}
// ExitContinue_statement is called when production continue_statement is exited.
func (s *BaseTSqlParserListener) ExitContinue_statement(ctx *Continue_statementContext) {}
// EnterGoto_statement is called when production goto_statement is entered.
func (s *BaseTSqlParserListener) EnterGoto_statement(ctx *Goto_statementContext) {}
// ExitGoto_statement is called when production goto_statement is exited.
func (s *BaseTSqlParserListener) ExitGoto_statement(ctx *Goto_statementContext) {}
// EnterReturn_statement is called when production return_statement is entered.
func (s *BaseTSqlParserListener) EnterReturn_statement(ctx *Return_statementContext) {}
// ExitReturn_statement is called when production return_statement is exited.
func (s *BaseTSqlParserListener) ExitReturn_statement(ctx *Return_statementContext) {}
// EnterIf_statement is called when production if_statement is entered.
func (s *BaseTSqlParserListener) EnterIf_statement(ctx *If_statementContext) {}
// ExitIf_statement is called when production if_statement is exited.
func (s *BaseTSqlParserListener) ExitIf_statement(ctx *If_statementContext) {}
// EnterThrow_statement is called when production throw_statement is entered.
func (s *BaseTSqlParserListener) EnterThrow_statement(ctx *Throw_statementContext) {}
// ExitThrow_statement is called when production throw_statement is exited.
func (s *BaseTSqlParserListener) ExitThrow_statement(ctx *Throw_statementContext) {}
// EnterThrow_error_number is called when production throw_error_number is entered.
func (s *BaseTSqlParserListener) EnterThrow_error_number(ctx *Throw_error_numberContext) {}
// ExitThrow_error_number is called when production throw_error_number is exited.
func (s *BaseTSqlParserListener) ExitThrow_error_number(ctx *Throw_error_numberContext) {}
// EnterThrow_message is called when production throw_message is entered.
func (s *BaseTSqlParserListener) EnterThrow_message(ctx *Throw_messageContext) {}
// ExitThrow_message is called when production throw_message is exited.
func (s *BaseTSqlParserListener) ExitThrow_message(ctx *Throw_messageContext) {}
// EnterThrow_state is called when production throw_state is entered.
func (s *BaseTSqlParserListener) EnterThrow_state(ctx *Throw_stateContext) {}
// ExitThrow_state is called when production throw_state is exited.
func (s *BaseTSqlParserListener) ExitThrow_state(ctx *Throw_stateContext) {}
// EnterTry_catch_statement is called when production try_catch_statement is entered.
func (s *BaseTSqlParserListener) EnterTry_catch_statement(ctx *Try_catch_statementContext) {}
// ExitTry_catch_statement is called when production try_catch_statement is exited.
func (s *BaseTSqlParserListener) ExitTry_catch_statement(ctx *Try_catch_statementContext) {}
// EnterWaitfor_statement is called when production waitfor_statement is entered.
func (s *BaseTSqlParserListener) EnterWaitfor_statement(ctx *Waitfor_statementContext) {}
// ExitWaitfor_statement is called when production waitfor_statement is exited.
func (s *BaseTSqlParserListener) ExitWaitfor_statement(ctx *Waitfor_statementContext) {}
// EnterWhile_statement is called when production while_statement is entered.
func (s *BaseTSqlParserListener) EnterWhile_statement(ctx *While_statementContext) {}
// ExitWhile_statement is called when production while_statement is exited.
func (s *BaseTSqlParserListener) ExitWhile_statement(ctx *While_statementContext) {}
// EnterPrint_statement is called when production print_statement is entered.
func (s *BaseTSqlParserListener) EnterPrint_statement(ctx *Print_statementContext) {}
// ExitPrint_statement is called when production print_statement is exited.
func (s *BaseTSqlParserListener) ExitPrint_statement(ctx *Print_statementContext) {}
// EnterRaiseerror_statement is called when production raiseerror_statement is entered.
func (s *BaseTSqlParserListener) EnterRaiseerror_statement(ctx *Raiseerror_statementContext) {}
// ExitRaiseerror_statement is called when production raiseerror_statement is exited.
func (s *BaseTSqlParserListener) ExitRaiseerror_statement(ctx *Raiseerror_statementContext) {}
// EnterEmpty_statement is called when production empty_statement is entered.
func (s *BaseTSqlParserListener) EnterEmpty_statement(ctx *Empty_statementContext) {}
// ExitEmpty_statement is called when production empty_statement is exited.
func (s *BaseTSqlParserListener) ExitEmpty_statement(ctx *Empty_statementContext) {}
// EnterAnother_statement is called when production another_statement is entered.
func (s *BaseTSqlParserListener) EnterAnother_statement(ctx *Another_statementContext) {}
// ExitAnother_statement is called when production another_statement is exited.
func (s *BaseTSqlParserListener) ExitAnother_statement(ctx *Another_statementContext) {}
// EnterAlter_application_role is called when production alter_application_role is entered.
func (s *BaseTSqlParserListener) EnterAlter_application_role(ctx *Alter_application_roleContext) {}
// ExitAlter_application_role is called when production alter_application_role is exited.
func (s *BaseTSqlParserListener) ExitAlter_application_role(ctx *Alter_application_roleContext) {}
// EnterAlter_xml_schema_collection is called when production alter_xml_schema_collection is entered.
func (s *BaseTSqlParserListener) EnterAlter_xml_schema_collection(ctx *Alter_xml_schema_collectionContext) {
}
// ExitAlter_xml_schema_collection is called when production alter_xml_schema_collection is exited.
func (s *BaseTSqlParserListener) ExitAlter_xml_schema_collection(ctx *Alter_xml_schema_collectionContext) {
}
// EnterCreate_application_role is called when production create_application_role is entered.
func (s *BaseTSqlParserListener) EnterCreate_application_role(ctx *Create_application_roleContext) {}
// ExitCreate_application_role is called when production create_application_role is exited.
func (s *BaseTSqlParserListener) ExitCreate_application_role(ctx *Create_application_roleContext) {}
// EnterDrop_aggregate is called when production drop_aggregate is entered.
func (s *BaseTSqlParserListener) EnterDrop_aggregate(ctx *Drop_aggregateContext) {}
// ExitDrop_aggregate is called when production drop_aggregate is exited.
func (s *BaseTSqlParserListener) ExitDrop_aggregate(ctx *Drop_aggregateContext) {}
// EnterDrop_application_role is called when production drop_application_role is entered.
func (s *BaseTSqlParserListener) EnterDrop_application_role(ctx *Drop_application_roleContext) {}
// ExitDrop_application_role is called when production drop_application_role is exited.
func (s *BaseTSqlParserListener) ExitDrop_application_role(ctx *Drop_application_roleContext) {}
// EnterAlter_assembly is called when production alter_assembly is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly(ctx *Alter_assemblyContext) {}
// ExitAlter_assembly is called when production alter_assembly is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly(ctx *Alter_assemblyContext) {}
// EnterAlter_assembly_start is called when production alter_assembly_start is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_start(ctx *Alter_assembly_startContext) {}
// ExitAlter_assembly_start is called when production alter_assembly_start is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_start(ctx *Alter_assembly_startContext) {}
// EnterAlter_assembly_clause is called when production alter_assembly_clause is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_clause(ctx *Alter_assembly_clauseContext) {}
// ExitAlter_assembly_clause is called when production alter_assembly_clause is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_clause(ctx *Alter_assembly_clauseContext) {}
// EnterAlter_assembly_from_clause is called when production alter_assembly_from_clause is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_from_clause(ctx *Alter_assembly_from_clauseContext) {
}
// ExitAlter_assembly_from_clause is called when production alter_assembly_from_clause is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_from_clause(ctx *Alter_assembly_from_clauseContext) {
}
// EnterAlter_assembly_from_clause_start is called when production alter_assembly_from_clause_start is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_from_clause_start(ctx *Alter_assembly_from_clause_startContext) {
}
// ExitAlter_assembly_from_clause_start is called when production alter_assembly_from_clause_start is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_from_clause_start(ctx *Alter_assembly_from_clause_startContext) {
}
// EnterAlter_assembly_drop_clause is called when production alter_assembly_drop_clause is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_drop_clause(ctx *Alter_assembly_drop_clauseContext) {
}
// ExitAlter_assembly_drop_clause is called when production alter_assembly_drop_clause is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_drop_clause(ctx *Alter_assembly_drop_clauseContext) {
}
// EnterAlter_assembly_drop_multiple_files is called when production alter_assembly_drop_multiple_files is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_drop_multiple_files(ctx *Alter_assembly_drop_multiple_filesContext) {
}
// ExitAlter_assembly_drop_multiple_files is called when production alter_assembly_drop_multiple_files is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_drop_multiple_files(ctx *Alter_assembly_drop_multiple_filesContext) {
}
// EnterAlter_assembly_drop is called when production alter_assembly_drop is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_drop(ctx *Alter_assembly_dropContext) {}
// ExitAlter_assembly_drop is called when production alter_assembly_drop is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_drop(ctx *Alter_assembly_dropContext) {}
// EnterAlter_assembly_add_clause is called when production alter_assembly_add_clause is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_add_clause(ctx *Alter_assembly_add_clauseContext) {
}
// ExitAlter_assembly_add_clause is called when production alter_assembly_add_clause is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_add_clause(ctx *Alter_assembly_add_clauseContext) {
}
// EnterAlter_asssembly_add_clause_start is called when production alter_asssembly_add_clause_start is entered.
func (s *BaseTSqlParserListener) EnterAlter_asssembly_add_clause_start(ctx *Alter_asssembly_add_clause_startContext) {
}
// ExitAlter_asssembly_add_clause_start is called when production alter_asssembly_add_clause_start is exited.
func (s *BaseTSqlParserListener) ExitAlter_asssembly_add_clause_start(ctx *Alter_asssembly_add_clause_startContext) {
}
// EnterAlter_assembly_client_file_clause is called when production alter_assembly_client_file_clause is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_client_file_clause(ctx *Alter_assembly_client_file_clauseContext) {
}
// ExitAlter_assembly_client_file_clause is called when production alter_assembly_client_file_clause is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_client_file_clause(ctx *Alter_assembly_client_file_clauseContext) {
}
// EnterAlter_assembly_file_name is called when production alter_assembly_file_name is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_file_name(ctx *Alter_assembly_file_nameContext) {
}
// ExitAlter_assembly_file_name is called when production alter_assembly_file_name is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_file_name(ctx *Alter_assembly_file_nameContext) {}
// EnterAlter_assembly_file_bits is called when production alter_assembly_file_bits is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_file_bits(ctx *Alter_assembly_file_bitsContext) {
}
// ExitAlter_assembly_file_bits is called when production alter_assembly_file_bits is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_file_bits(ctx *Alter_assembly_file_bitsContext) {}
// EnterAlter_assembly_as is called when production alter_assembly_as is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_as(ctx *Alter_assembly_asContext) {}
// ExitAlter_assembly_as is called when production alter_assembly_as is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_as(ctx *Alter_assembly_asContext) {}
// EnterAlter_assembly_with_clause is called when production alter_assembly_with_clause is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_with_clause(ctx *Alter_assembly_with_clauseContext) {
}
// ExitAlter_assembly_with_clause is called when production alter_assembly_with_clause is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_with_clause(ctx *Alter_assembly_with_clauseContext) {
}
// EnterAlter_assembly_with is called when production alter_assembly_with is entered.
func (s *BaseTSqlParserListener) EnterAlter_assembly_with(ctx *Alter_assembly_withContext) {}
// ExitAlter_assembly_with is called when production alter_assembly_with is exited.
func (s *BaseTSqlParserListener) ExitAlter_assembly_with(ctx *Alter_assembly_withContext) {}
// EnterClient_assembly_specifier is called when production client_assembly_specifier is entered.
func (s *BaseTSqlParserListener) EnterClient_assembly_specifier(ctx *Client_assembly_specifierContext) {
}
// ExitClient_assembly_specifier is called when production client_assembly_specifier is exited.
func (s *BaseTSqlParserListener) ExitClient_assembly_specifier(ctx *Client_assembly_specifierContext) {
}
// EnterAssembly_option is called when production assembly_option is entered.
func (s *BaseTSqlParserListener) EnterAssembly_option(ctx *Assembly_optionContext) {}
// ExitAssembly_option is called when production assembly_option is exited.
func (s *BaseTSqlParserListener) ExitAssembly_option(ctx *Assembly_optionContext) {}
// EnterNetwork_file_share is called when production network_file_share is entered.
func (s *BaseTSqlParserListener) EnterNetwork_file_share(ctx *Network_file_shareContext) {}
// ExitNetwork_file_share is called when production network_file_share is exited.
func (s *BaseTSqlParserListener) ExitNetwork_file_share(ctx *Network_file_shareContext) {}
// EnterNetwork_computer is called when production network_computer is entered.
func (s *BaseTSqlParserListener) EnterNetwork_computer(ctx *Network_computerContext) {}
// ExitNetwork_computer is called when production network_computer is exited.
func (s *BaseTSqlParserListener) ExitNetwork_computer(ctx *Network_computerContext) {}
// EnterNetwork_file_start is called when production network_file_start is entered.
func (s *BaseTSqlParserListener) EnterNetwork_file_start(ctx *Network_file_startContext) {}
// ExitNetwork_file_start is called when production network_file_start is exited.
func (s *BaseTSqlParserListener) ExitNetwork_file_start(ctx *Network_file_startContext) {}
// EnterFile_path is called when production file_path is entered.
func (s *BaseTSqlParserListener) EnterFile_path(ctx *File_pathContext) {}
// ExitFile_path is called when production file_path is exited.
func (s *BaseTSqlParserListener) ExitFile_path(ctx *File_pathContext) {}
// EnterFile_directory_path_separator is called when production file_directory_path_separator is entered.
func (s *BaseTSqlParserListener) EnterFile_directory_path_separator(ctx *File_directory_path_separatorContext) {
}
// ExitFile_directory_path_separator is called when production file_directory_path_separator is exited.
func (s *BaseTSqlParserListener) ExitFile_directory_path_separator(ctx *File_directory_path_separatorContext) {
}
// EnterLocal_file is called when production local_file is entered.
func (s *BaseTSqlParserListener) EnterLocal_file(ctx *Local_fileContext) {}
// ExitLocal_file is called when production local_file is exited.
func (s *BaseTSqlParserListener) ExitLocal_file(ctx *Local_fileContext) {}
// EnterLocal_drive is called when production local_drive is entered.
func (s *BaseTSqlParserListener) EnterLocal_drive(ctx *Local_driveContext) {}
// ExitLocal_drive is called when production local_drive is exited.
func (s *BaseTSqlParserListener) ExitLocal_drive(ctx *Local_driveContext) {}
// EnterMultiple_local_files is called when production multiple_local_files is entered.
func (s *BaseTSqlParserListener) EnterMultiple_local_files(ctx *Multiple_local_filesContext) {}
// ExitMultiple_local_files is called when production multiple_local_files is exited.
func (s *BaseTSqlParserListener) ExitMultiple_local_files(ctx *Multiple_local_filesContext) {}
// EnterMultiple_local_file_start is called when production multiple_local_file_start is entered.
func (s *BaseTSqlParserListener) EnterMultiple_local_file_start(ctx *Multiple_local_file_startContext) {
}
// ExitMultiple_local_file_start is called when production multiple_local_file_start is exited.
func (s *BaseTSqlParserListener) ExitMultiple_local_file_start(ctx *Multiple_local_file_startContext) {
}
// EnterCreate_assembly is called when production create_assembly is entered.
func (s *BaseTSqlParserListener) EnterCreate_assembly(ctx *Create_assemblyContext) {}
// ExitCreate_assembly is called when production create_assembly is exited.
func (s *BaseTSqlParserListener) ExitCreate_assembly(ctx *Create_assemblyContext) {}
// EnterDrop_assembly is called when production drop_assembly is entered.
func (s *BaseTSqlParserListener) EnterDrop_assembly(ctx *Drop_assemblyContext) {}
// ExitDrop_assembly is called when production drop_assembly is exited.
func (s *BaseTSqlParserListener) ExitDrop_assembly(ctx *Drop_assemblyContext) {}
// EnterAlter_asymmetric_key is called when production alter_asymmetric_key is entered.
func (s *BaseTSqlParserListener) EnterAlter_asymmetric_key(ctx *Alter_asymmetric_keyContext) {}
// ExitAlter_asymmetric_key is called when production alter_asymmetric_key is exited.
func (s *BaseTSqlParserListener) ExitAlter_asymmetric_key(ctx *Alter_asymmetric_keyContext) {}
// EnterAlter_asymmetric_key_start is called when production alter_asymmetric_key_start is entered.
func (s *BaseTSqlParserListener) EnterAlter_asymmetric_key_start(ctx *Alter_asymmetric_key_startContext) {
}
// ExitAlter_asymmetric_key_start is called when production alter_asymmetric_key_start is exited.
func (s *BaseTSqlParserListener) ExitAlter_asymmetric_key_start(ctx *Alter_asymmetric_key_startContext) {
}
// EnterAsymmetric_key_option is called when production asymmetric_key_option is entered.
func (s *BaseTSqlParserListener) EnterAsymmetric_key_option(ctx *Asymmetric_key_optionContext) {}
// ExitAsymmetric_key_option is called when production asymmetric_key_option is exited.
func (s *BaseTSqlParserListener) ExitAsymmetric_key_option(ctx *Asymmetric_key_optionContext) {}
// EnterAsymmetric_key_option_start is called when production asymmetric_key_option_start is entered.
func (s *BaseTSqlParserListener) EnterAsymmetric_key_option_start(ctx *Asymmetric_key_option_startContext) {
}
// ExitAsymmetric_key_option_start is called when production asymmetric_key_option_start is exited.
func (s *BaseTSqlParserListener) ExitAsymmetric_key_option_start(ctx *Asymmetric_key_option_startContext) {
}
// EnterAsymmetric_key_password_change_option is called when production asymmetric_key_password_change_option is entered.
func (s *BaseTSqlParserListener) EnterAsymmetric_key_password_change_option(ctx *Asymmetric_key_password_change_optionContext) {
}
// ExitAsymmetric_key_password_change_option is called when production asymmetric_key_password_change_option is exited.
func (s *BaseTSqlParserListener) ExitAsymmetric_key_password_change_option(ctx *Asymmetric_key_password_change_optionContext) {
}
// EnterCreate_asymmetric_key is called when production create_asymmetric_key is entered.
func (s *BaseTSqlParserListener) EnterCreate_asymmetric_key(ctx *Create_asymmetric_keyContext) {}
// ExitCreate_asymmetric_key is called when production create_asymmetric_key is exited.
func (s *BaseTSqlParserListener) ExitCreate_asymmetric_key(ctx *Create_asymmetric_keyContext) {}
// EnterDrop_asymmetric_key is called when production drop_asymmetric_key is entered.
func (s *BaseTSqlParserListener) EnterDrop_asymmetric_key(ctx *Drop_asymmetric_keyContext) {}
// ExitDrop_asymmetric_key is called when production drop_asymmetric_key is exited.
func (s *BaseTSqlParserListener) ExitDrop_asymmetric_key(ctx *Drop_asymmetric_keyContext) {}
// EnterAlter_authorization is called when production alter_authorization is entered.
func (s *BaseTSqlParserListener) EnterAlter_authorization(ctx *Alter_authorizationContext) {}
// ExitAlter_authorization is called when production alter_authorization is exited.
func (s *BaseTSqlParserListener) ExitAlter_authorization(ctx *Alter_authorizationContext) {}
// EnterAuthorization_grantee is called when production authorization_grantee is entered.
func (s *BaseTSqlParserListener) EnterAuthorization_grantee(ctx *Authorization_granteeContext) {}
// ExitAuthorization_grantee is called when production authorization_grantee is exited.
func (s *BaseTSqlParserListener) ExitAuthorization_grantee(ctx *Authorization_granteeContext) {}
// EnterEntity_to is called when production entity_to is entered.
func (s *BaseTSqlParserListener) EnterEntity_to(ctx *Entity_toContext) {}
// ExitEntity_to is called when production entity_to is exited.
func (s *BaseTSqlParserListener) ExitEntity_to(ctx *Entity_toContext) {}
// EnterColon_colon is called when production colon_colon is entered.
func (s *BaseTSqlParserListener) EnterColon_colon(ctx *Colon_colonContext) {}
// ExitColon_colon is called when production colon_colon is exited.
func (s *BaseTSqlParserListener) ExitColon_colon(ctx *Colon_colonContext) {}
// EnterAlter_authorization_start is called when production alter_authorization_start is entered.
func (s *BaseTSqlParserListener) EnterAlter_authorization_start(ctx *Alter_authorization_startContext) {
}
// ExitAlter_authorization_start is called when production alter_authorization_start is exited.
func (s *BaseTSqlParserListener) ExitAlter_authorization_start(ctx *Alter_authorization_startContext) {
}
// EnterAlter_authorization_for_sql_database is called when production alter_authorization_for_sql_database is entered.
func (s *BaseTSqlParserListener) EnterAlter_authorization_for_sql_database(ctx *Alter_authorization_for_sql_databaseContext) {
}
// ExitAlter_authorization_for_sql_database is called when production alter_authorization_for_sql_database is exited.
func (s *BaseTSqlParserListener) ExitAlter_authorization_for_sql_database(ctx *Alter_authorization_for_sql_databaseContext) {
}
// EnterAlter_authorization_for_azure_dw is called when production alter_authorization_for_azure_dw is entered.
func (s *BaseTSqlParserListener) EnterAlter_authorization_for_azure_dw(ctx *Alter_authorization_for_azure_dwContext) {
}
// ExitAlter_authorization_for_azure_dw is called when production alter_authorization_for_azure_dw is exited.
func (s *BaseTSqlParserListener) ExitAlter_authorization_for_azure_dw(ctx *Alter_authorization_for_azure_dwContext) {
}
// EnterAlter_authorization_for_parallel_dw is called when production alter_authorization_for_parallel_dw is entered.
func (s *BaseTSqlParserListener) EnterAlter_authorization_for_parallel_dw(ctx *Alter_authorization_for_parallel_dwContext) {
}
// ExitAlter_authorization_for_parallel_dw is called when production alter_authorization_for_parallel_dw is exited.
func (s *BaseTSqlParserListener) ExitAlter_authorization_for_parallel_dw(ctx *Alter_authorization_for_parallel_dwContext) {
}
// EnterClass_type is called when production class_type is entered.
func (s *BaseTSqlParserListener) EnterClass_type(ctx *Class_typeContext) {}
// ExitClass_type is called when production class_type is exited.
func (s *BaseTSqlParserListener) ExitClass_type(ctx *Class_typeContext) {}
// EnterClass_type_for_sql_database is called when production class_type_for_sql_database is entered.
func (s *BaseTSqlParserListener) EnterClass_type_for_sql_database(ctx *Class_type_for_sql_databaseContext) {
}
// ExitClass_type_for_sql_database is called when production class_type_for_sql_database is exited.
func (s *BaseTSqlParserListener) ExitClass_type_for_sql_database(ctx *Class_type_for_sql_databaseContext) {
}
// EnterClass_type_for_azure_dw is called when production class_type_for_azure_dw is entered.
func (s *BaseTSqlParserListener) EnterClass_type_for_azure_dw(ctx *Class_type_for_azure_dwContext) {}
// ExitClass_type_for_azure_dw is called when production class_type_for_azure_dw is exited.
func (s *BaseTSqlParserListener) ExitClass_type_for_azure_dw(ctx *Class_type_for_azure_dwContext) {}
// EnterClass_type_for_parallel_dw is called when production class_type_for_parallel_dw is entered.
func (s *BaseTSqlParserListener) EnterClass_type_for_parallel_dw(ctx *Class_type_for_parallel_dwContext) {
}
// ExitClass_type_for_parallel_dw is called when production class_type_for_parallel_dw is exited.
func (s *BaseTSqlParserListener) ExitClass_type_for_parallel_dw(ctx *Class_type_for_parallel_dwContext) {
}
// EnterClass_type_for_grant is called when production class_type_for_grant is entered.
func (s *BaseTSqlParserListener) EnterClass_type_for_grant(ctx *Class_type_for_grantContext) {}
// ExitClass_type_for_grant is called when production class_type_for_grant is exited.
func (s *BaseTSqlParserListener) ExitClass_type_for_grant(ctx *Class_type_for_grantContext) {}
// EnterDrop_availability_group is called when production drop_availability_group is entered.
func (s *BaseTSqlParserListener) EnterDrop_availability_group(ctx *Drop_availability_groupContext) {}
// ExitDrop_availability_group is called when production drop_availability_group is exited.
func (s *BaseTSqlParserListener) ExitDrop_availability_group(ctx *Drop_availability_groupContext) {}
// EnterAlter_availability_group is called when production alter_availability_group is entered.
func (s *BaseTSqlParserListener) EnterAlter_availability_group(ctx *Alter_availability_groupContext) {
}
// ExitAlter_availability_group is called when production alter_availability_group is exited.
func (s *BaseTSqlParserListener) ExitAlter_availability_group(ctx *Alter_availability_groupContext) {}
// EnterAlter_availability_group_start is called when production alter_availability_group_start is entered.
func (s *BaseTSqlParserListener) EnterAlter_availability_group_start(ctx *Alter_availability_group_startContext) {
}
// ExitAlter_availability_group_start is called when production alter_availability_group_start is exited.
func (s *BaseTSqlParserListener) ExitAlter_availability_group_start(ctx *Alter_availability_group_startContext) {
}
// EnterAlter_availability_group_options is called when production alter_availability_group_options is entered.
func (s *BaseTSqlParserListener) EnterAlter_availability_group_options(ctx *Alter_availability_group_optionsContext) {
}
// ExitAlter_availability_group_options is called when production alter_availability_group_options is exited.
func (s *BaseTSqlParserListener) ExitAlter_availability_group_options(ctx *Alter_availability_group_optionsContext) {
}
// EnterIp_v4_failover is called when production ip_v4_failover is entered.
func (s *BaseTSqlParserListener) EnterIp_v4_failover(ctx *Ip_v4_failoverContext) {}
// ExitIp_v4_failover is called when production ip_v4_failover is exited.
func (s *BaseTSqlParserListener) ExitIp_v4_failover(ctx *Ip_v4_failoverContext) {}
// EnterIp_v6_failover is called when production ip_v6_failover is entered.
func (s *BaseTSqlParserListener) EnterIp_v6_failover(ctx *Ip_v6_failoverContext) {}
// ExitIp_v6_failover is called when production ip_v6_failover is exited.
func (s *BaseTSqlParserListener) ExitIp_v6_failover(ctx *Ip_v6_failoverContext) {}
// EnterCreate_or_alter_broker_priority is called when production create_or_alter_broker_priority is entered.
func (s *BaseTSqlParserListener) EnterCreate_or_alter_broker_priority(ctx *Create_or_alter_broker_priorityContext) {
}
// ExitCreate_or_alter_broker_priority is called when production create_or_alter_broker_priority is exited.
func (s *BaseTSqlParserListener) ExitCreate_or_alter_broker_priority(ctx *Create_or_alter_broker_priorityContext) {
}
// EnterDrop_broker_priority is called when production drop_broker_priority is entered.
func (s *BaseTSqlParserListener) EnterDrop_broker_priority(ctx *Drop_broker_priorityContext) {}
// ExitDrop_broker_priority is called when production drop_broker_priority is exited.
func (s *BaseTSqlParserListener) ExitDrop_broker_priority(ctx *Drop_broker_priorityContext) {}
// EnterAlter_certificate is called when production alter_certificate is entered.
func (s *BaseTSqlParserListener) EnterAlter_certificate(ctx *Alter_certificateContext) {}
// ExitAlter_certificate is called when production alter_certificate is exited.
func (s *BaseTSqlParserListener) ExitAlter_certificate(ctx *Alter_certificateContext) {}
// EnterAlter_column_encryption_key is called when production alter_column_encryption_key is entered.
func (s *BaseTSqlParserListener) EnterAlter_column_encryption_key(ctx *Alter_column_encryption_keyContext) {
}
// ExitAlter_column_encryption_key is called when production alter_column_encryption_key is exited.
func (s *BaseTSqlParserListener) ExitAlter_column_encryption_key(ctx *Alter_column_encryption_keyContext) {
}
// EnterCreate_column_encryption_key is called when production create_column_encryption_key is entered.
func (s *BaseTSqlParserListener) EnterCreate_column_encryption_key(ctx *Create_column_encryption_keyContext) {
}
// ExitCreate_column_encryption_key is called when production create_column_encryption_key is exited.
func (s *BaseTSqlParserListener) ExitCreate_column_encryption_key(ctx *Create_column_encryption_keyContext) {
}
// EnterDrop_certificate is called when production drop_certificate is entered.
func (s *BaseTSqlParserListener) EnterDrop_certificate(ctx *Drop_certificateContext) {}
// ExitDrop_certificate is called when production drop_certificate is exited.
func (s *BaseTSqlParserListener) ExitDrop_certificate(ctx *Drop_certificateContext) {}
// EnterDrop_column_encryption_key is called when production drop_column_encryption_key is entered.
func (s *BaseTSqlParserListener) EnterDrop_column_encryption_key(ctx *Drop_column_encryption_keyContext) {
}
// ExitDrop_column_encryption_key is called when production drop_column_encryption_key is exited.
func (s *BaseTSqlParserListener) ExitDrop_column_encryption_key(ctx *Drop_column_encryption_keyContext) {
}
// EnterDrop_column_master_key is called when production drop_column_master_key is entered.
func (s *BaseTSqlParserListener) EnterDrop_column_master_key(ctx *Drop_column_master_keyContext) {}
// ExitDrop_column_master_key is called when production drop_column_master_key is exited.
func (s *BaseTSqlParserListener) ExitDrop_column_master_key(ctx *Drop_column_master_keyContext) {}
// EnterDrop_contract is called when production drop_contract is entered.
func (s *BaseTSqlParserListener) EnterDrop_contract(ctx *Drop_contractContext) {}
// ExitDrop_contract is called when production drop_contract is exited.
func (s *BaseTSqlParserListener) ExitDrop_contract(ctx *Drop_contractContext) {}
// EnterDrop_credential is called when production drop_credential is entered.
func (s *BaseTSqlParserListener) EnterDrop_credential(ctx *Drop_credentialContext) {}
// ExitDrop_credential is called when production drop_credential is exited.
func (s *BaseTSqlParserListener) ExitDrop_credential(ctx *Drop_credentialContext) {}
// EnterDrop_cryptograhic_provider is called when production drop_cryptograhic_provider is entered.
func (s *BaseTSqlParserListener) EnterDrop_cryptograhic_provider(ctx *Drop_cryptograhic_providerContext) {
}
// ExitDrop_cryptograhic_provider is called when production drop_cryptograhic_provider is exited.
func (s *BaseTSqlParserListener) ExitDrop_cryptograhic_provider(ctx *Drop_cryptograhic_providerContext) {
}
// EnterDrop_database is called when production drop_database is entered.
func (s *BaseTSqlParserListener) EnterDrop_database(ctx *Drop_databaseContext) {}
// ExitDrop_database is called when production drop_database is exited.
func (s *BaseTSqlParserListener) ExitDrop_database(ctx *Drop_databaseContext) {}
// EnterDrop_database_audit_specification is called when production drop_database_audit_specification is entered.
func (s *BaseTSqlParserListener) EnterDrop_database_audit_specification(ctx *Drop_database_audit_specificationContext) {
}
// ExitDrop_database_audit_specification is called when production drop_database_audit_specification is exited.
func (s *BaseTSqlParserListener) ExitDrop_database_audit_specification(ctx *Drop_database_audit_specificationContext) {
}
// EnterDrop_database_encryption_key is called when production drop_database_encryption_key is entered.
func (s *BaseTSqlParserListener) EnterDrop_database_encryption_key(ctx *Drop_database_encryption_keyContext) {
}
// ExitDrop_database_encryption_key is called when production drop_database_encryption_key is exited.
func (s *BaseTSqlParserListener) ExitDrop_database_encryption_key(ctx *Drop_database_encryption_keyContext) {
}
// EnterDrop_database_scoped_credential is called when production drop_database_scoped_credential is entered.
func (s *BaseTSqlParserListener) EnterDrop_database_scoped_credential(ctx *Drop_database_scoped_credentialContext) {
}
// ExitDrop_database_scoped_credential is called when production drop_database_scoped_credential is exited.
func (s *BaseTSqlParserListener) ExitDrop_database_scoped_credential(ctx *Drop_database_scoped_credentialContext) {
}
// EnterDrop_default is called when production drop_default is entered.
func (s *BaseTSqlParserListener) EnterDrop_default(ctx *Drop_defaultContext) {}
// ExitDrop_default is called when production drop_default is exited.
func (s *BaseTSqlParserListener) ExitDrop_default(ctx *Drop_defaultContext) {}
// EnterDrop_endpoint is called when production drop_endpoint is entered.
func (s *BaseTSqlParserListener) EnterDrop_endpoint(ctx *Drop_endpointContext) {}
// ExitDrop_endpoint is called when production drop_endpoint is exited.
func (s *BaseTSqlParserListener) ExitDrop_endpoint(ctx *Drop_endpointContext) {}
// EnterDrop_external_data_source is called when production drop_external_data_source is entered.
func (s *BaseTSqlParserListener) EnterDrop_external_data_source(ctx *Drop_external_data_sourceContext) {
}
// ExitDrop_external_data_source is called when production drop_external_data_source is exited.
func (s *BaseTSqlParserListener) ExitDrop_external_data_source(ctx *Drop_external_data_sourceContext) {
}
// EnterDrop_external_file_format is called when production drop_external_file_format is entered.
func (s *BaseTSqlParserListener) EnterDrop_external_file_format(ctx *Drop_external_file_formatContext) {
}
// ExitDrop_external_file_format is called when production drop_external_file_format is exited.
func (s *BaseTSqlParserListener) ExitDrop_external_file_format(ctx *Drop_external_file_formatContext) {
}
// EnterDrop_external_library is called when production drop_external_library is entered.
func (s *BaseTSqlParserListener) EnterDrop_external_library(ctx *Drop_external_libraryContext) {}
// ExitDrop_external_library is called when production drop_external_library is exited.
func (s *BaseTSqlParserListener) ExitDrop_external_library(ctx *Drop_external_libraryContext) {}
// EnterDrop_external_resource_pool is called when production drop_external_resource_pool is entered.
func (s *BaseTSqlParserListener) EnterDrop_external_resource_pool(ctx *Drop_external_resource_poolContext) {
}
// ExitDrop_external_resource_pool is called when production drop_external_resource_pool is exited.
func (s *BaseTSqlParserListener) ExitDrop_external_resource_pool(ctx *Drop_external_resource_poolContext) {
}
// EnterDrop_external_table is called when production drop_external_table is entered.
func (s *BaseTSqlParserListener) EnterDrop_external_table(ctx *Drop_external_tableContext) {}
// ExitDrop_external_table is called when production drop_external_table is exited.
func (s *BaseTSqlParserListener) ExitDrop_external_table(ctx *Drop_external_tableContext) {}
// EnterDrop_event_notifications is called when production drop_event_notifications is entered.
func (s *BaseTSqlParserListener) EnterDrop_event_notifications(ctx *Drop_event_notificationsContext) {
}
// ExitDrop_event_notifications is called when production drop_event_notifications is exited.
func (s *BaseTSqlParserListener) ExitDrop_event_notifications(ctx *Drop_event_notificationsContext) {}
// EnterDrop_event_session is called when production drop_event_session is entered.
func (s *BaseTSqlParserListener) EnterDrop_event_session(ctx *Drop_event_sessionContext) {}
// ExitDrop_event_session is called when production drop_event_session is exited.
func (s *BaseTSqlParserListener) ExitDrop_event_session(ctx *Drop_event_sessionContext) {}
// EnterDrop_fulltext_catalog is called when production drop_fulltext_catalog is entered.
func (s *BaseTSqlParserListener) EnterDrop_fulltext_catalog(ctx *Drop_fulltext_catalogContext) {}
// ExitDrop_fulltext_catalog is called when production drop_fulltext_catalog is exited.
func (s *BaseTSqlParserListener) ExitDrop_fulltext_catalog(ctx *Drop_fulltext_catalogContext) {}
// EnterDrop_fulltext_index is called when production drop_fulltext_index is entered.
func (s *BaseTSqlParserListener) EnterDrop_fulltext_index(ctx *Drop_fulltext_indexContext) {}
// ExitDrop_fulltext_index is called when production drop_fulltext_index is exited.
func (s *BaseTSqlParserListener) ExitDrop_fulltext_index(ctx *Drop_fulltext_indexContext) {}
// EnterDrop_fulltext_stoplist is called when production drop_fulltext_stoplist is entered.
func (s *BaseTSqlParserListener) EnterDrop_fulltext_stoplist(ctx *Drop_fulltext_stoplistContext) {}
// ExitDrop_fulltext_stoplist is called when production drop_fulltext_stoplist is exited.
func (s *BaseTSqlParserListener) ExitDrop_fulltext_stoplist(ctx *Drop_fulltext_stoplistContext) {}
// EnterDrop_login is called when production drop_login is entered.
func (s *BaseTSqlParserListener) EnterDrop_login(ctx *Drop_loginContext) {}
// ExitDrop_login is called when production drop_login is exited.
func (s *BaseTSqlParserListener) ExitDrop_login(ctx *Drop_loginContext) {}
// EnterDrop_master_key is called when production drop_master_key is entered.
func (s *BaseTSqlParserListener) EnterDrop_master_key(ctx *Drop_master_keyContext) {}
// ExitDrop_master_key is called when production drop_master_key is exited.
func (s *BaseTSqlParserListener) ExitDrop_master_key(ctx *Drop_master_keyContext) {}
// EnterDrop_message_type is called when production drop_message_type is entered.
func (s *BaseTSqlParserListener) EnterDrop_message_type(ctx *Drop_message_typeContext) {}
// ExitDrop_message_type is called when production drop_message_type is exited.
func (s *BaseTSqlParserListener) ExitDrop_message_type(ctx *Drop_message_typeContext) {}
// EnterDrop_partition_function is called when production drop_partition_function is entered.
func (s *BaseTSqlParserListener) EnterDrop_partition_function(ctx *Drop_partition_functionContext) {}
// ExitDrop_partition_function is called when production drop_partition_function is exited.
func (s *BaseTSqlParserListener) ExitDrop_partition_function(ctx *Drop_partition_functionContext) {}
// EnterDrop_partition_scheme is called when production drop_partition_scheme is entered.
func (s *BaseTSqlParserListener) EnterDrop_partition_scheme(ctx *Drop_partition_schemeContext) {}
// ExitDrop_partition_scheme is called when production drop_partition_scheme is exited.
func (s *BaseTSqlParserListener) ExitDrop_partition_scheme(ctx *Drop_partition_schemeContext) {}
// EnterDrop_queue is called when production drop_queue is entered.
func (s *BaseTSqlParserListener) EnterDrop_queue(ctx *Drop_queueContext) {}
// ExitDrop_queue is called when production drop_queue is exited.
func (s *BaseTSqlParserListener) ExitDrop_queue(ctx *Drop_queueContext) {}
// EnterDrop_remote_service_binding is called when production drop_remote_service_binding is entered.
func (s *BaseTSqlParserListener) EnterDrop_remote_service_binding(ctx *Drop_remote_service_bindingContext) {
}
// ExitDrop_remote_service_binding is called when production drop_remote_service_binding is exited.
func (s *BaseTSqlParserListener) ExitDrop_remote_service_binding(ctx *Drop_remote_service_bindingContext) {
}
// EnterDrop_resource_pool is called when production drop_resource_pool is entered.
func (s *BaseTSqlParserListener) EnterDrop_resource_pool(ctx *Drop_resource_poolContext) {}
// ExitDrop_resource_pool is called when production drop_resource_pool is exited.
func (s *BaseTSqlParserListener) ExitDrop_resource_pool(ctx *Drop_resource_poolContext) {}
// EnterDrop_db_role is called when production drop_db_role is entered.
func (s *BaseTSqlParserListener) EnterDrop_db_role(ctx *Drop_db_roleContext) {}
// ExitDrop_db_role is called when production drop_db_role is exited.
func (s *BaseTSqlParserListener) ExitDrop_db_role(ctx *Drop_db_roleContext) {}
// EnterDrop_route is called when production drop_route is entered.
func (s *BaseTSqlParserListener) EnterDrop_route(ctx *Drop_routeContext) {}
// ExitDrop_route is called when production drop_route is exited.
func (s *BaseTSqlParserListener) ExitDrop_route(ctx *Drop_routeContext) {}
// EnterDrop_rule is called when production drop_rule is entered.
func (s *BaseTSqlParserListener) EnterDrop_rule(ctx *Drop_ruleContext) {}
// ExitDrop_rule is called when production drop_rule is exited.
func (s *BaseTSqlParserListener) ExitDrop_rule(ctx *Drop_ruleContext) {}
// EnterDrop_schema is called when production drop_schema is entered.
func (s *BaseTSqlParserListener) EnterDrop_schema(ctx *Drop_schemaContext) {}
// ExitDrop_schema is called when production drop_schema is exited.
func (s *BaseTSqlParserListener) ExitDrop_schema(ctx *Drop_schemaContext) {}
// EnterDrop_search_property_list is called when production drop_search_property_list is entered.
func (s *BaseTSqlParserListener) EnterDrop_search_property_list(ctx *Drop_search_property_listContext) {
}
// ExitDrop_search_property_list is called when production drop_search_property_list is exited.
func (s *BaseTSqlParserListener) ExitDrop_search_property_list(ctx *Drop_search_property_listContext) {
}
// EnterDrop_security_policy is called when production drop_security_policy is entered.
func (s *BaseTSqlParserListener) EnterDrop_security_policy(ctx *Drop_security_policyContext) {}
// ExitDrop_security_policy is called when production drop_security_policy is exited.
func (s *BaseTSqlParserListener) ExitDrop_security_policy(ctx *Drop_security_policyContext) {}
// EnterDrop_sequence is called when production drop_sequence is entered.
func (s *BaseTSqlParserListener) EnterDrop_sequence(ctx *Drop_sequenceContext) {}
// ExitDrop_sequence is called when production drop_sequence is exited.
func (s *BaseTSqlParserListener) ExitDrop_sequence(ctx *Drop_sequenceContext) {}
// EnterDrop_server_audit is called when production drop_server_audit is entered.
func (s *BaseTSqlParserListener) EnterDrop_server_audit(ctx *Drop_server_auditContext) {}
// ExitDrop_server_audit is called when production drop_server_audit is exited.
func (s *BaseTSqlParserListener) ExitDrop_server_audit(ctx *Drop_server_auditContext) {}
// EnterDrop_server_audit_specification is called when production drop_server_audit_specification is entered.
func (s *BaseTSqlParserListener) EnterDrop_server_audit_specification(ctx *Drop_server_audit_specificationContext) {
}
// ExitDrop_server_audit_specification is called when production drop_server_audit_specification is exited.
func (s *BaseTSqlParserListener) ExitDrop_server_audit_specification(ctx *Drop_server_audit_specificationContext) {
}
// EnterDrop_server_role is called when production drop_server_role is entered.
func (s *BaseTSqlParserListener) EnterDrop_server_role(ctx *Drop_server_roleContext) {}
// ExitDrop_server_role is called when production drop_server_role is exited.
func (s *BaseTSqlParserListener) ExitDrop_server_role(ctx *Drop_server_roleContext) {}
// EnterDrop_service is called when production drop_service is entered.
func (s *BaseTSqlParserListener) EnterDrop_service(ctx *Drop_serviceContext) {}
// ExitDrop_service is called when production drop_service is exited.
func (s *BaseTSqlParserListener) ExitDrop_service(ctx *Drop_serviceContext) {}
// EnterDrop_signature is called when production drop_signature is entered.
func (s *BaseTSqlParserListener) EnterDrop_signature(ctx *Drop_signatureContext) {}
// ExitDrop_signature is called when production drop_signature is exited.
func (s *BaseTSqlParserListener) ExitDrop_signature(ctx *Drop_signatureContext) {}
// EnterDrop_statistics_name_azure_dw_and_pdw is called when production drop_statistics_name_azure_dw_and_pdw is entered.
func (s *BaseTSqlParserListener) EnterDrop_statistics_name_azure_dw_and_pdw(ctx *Drop_statistics_name_azure_dw_and_pdwContext) {
}
// ExitDrop_statistics_name_azure_dw_and_pdw is called when production drop_statistics_name_azure_dw_and_pdw is exited.
func (s *BaseTSqlParserListener) ExitDrop_statistics_name_azure_dw_and_pdw(ctx *Drop_statistics_name_azure_dw_and_pdwContext) {
}
// EnterDrop_symmetric_key is called when production drop_symmetric_key is entered.
func (s *BaseTSqlParserListener) EnterDrop_symmetric_key(ctx *Drop_symmetric_keyContext) {}
// ExitDrop_symmetric_key is called when production drop_symmetric_key is exited.
func (s *BaseTSqlParserListener) ExitDrop_symmetric_key(ctx *Drop_symmetric_keyContext) {}
// EnterDrop_synonym is called when production drop_synonym is entered.
func (s *BaseTSqlParserListener) EnterDrop_synonym(ctx *Drop_synonymContext) {}
// ExitDrop_synonym is called when production drop_synonym is exited.
func (s *BaseTSqlParserListener) ExitDrop_synonym(ctx *Drop_synonymContext) {}
// EnterDrop_user is called when production drop_user is entered.
func (s *BaseTSqlParserListener) EnterDrop_user(ctx *Drop_userContext) {}
// ExitDrop_user is called when production drop_user is exited.
func (s *BaseTSqlParserListener) ExitDrop_user(ctx *Drop_userContext) {}
// EnterDrop_workload_group is called when production drop_workload_group is entered.
func (s *BaseTSqlParserListener) EnterDrop_workload_group(ctx *Drop_workload_groupContext) {}
// ExitDrop_workload_group is called when production drop_workload_group is exited.
func (s *BaseTSqlParserListener) ExitDrop_workload_group(ctx *Drop_workload_groupContext) {}
// EnterDrop_xml_schema_collection is called when production drop_xml_schema_collection is entered.
func (s *BaseTSqlParserListener) EnterDrop_xml_schema_collection(ctx *Drop_xml_schema_collectionContext) {
}
// ExitDrop_xml_schema_collection is called when production drop_xml_schema_collection is exited.
func (s *BaseTSqlParserListener) ExitDrop_xml_schema_collection(ctx *Drop_xml_schema_collectionContext) {
}
// EnterDisable_trigger is called when production disable_trigger is entered.
func (s *BaseTSqlParserListener) EnterDisable_trigger(ctx *Disable_triggerContext) {}
// ExitDisable_trigger is called when production disable_trigger is exited.
func (s *BaseTSqlParserListener) ExitDisable_trigger(ctx *Disable_triggerContext) {}
// EnterEnable_trigger is called when production enable_trigger is entered.
func (s *BaseTSqlParserListener) EnterEnable_trigger(ctx *Enable_triggerContext) {}
// ExitEnable_trigger is called when production enable_trigger is exited.
func (s *BaseTSqlParserListener) ExitEnable_trigger(ctx *Enable_triggerContext) {}
// EnterLock_table is called when production lock_table is entered.
func (s *BaseTSqlParserListener) EnterLock_table(ctx *Lock_tableContext) {}
// ExitLock_table is called when production lock_table is exited.
func (s *BaseTSqlParserListener) ExitLock_table(ctx *Lock_tableContext) {}
// EnterTruncate_table is called when production truncate_table is entered.
func (s *BaseTSqlParserListener) EnterTruncate_table(ctx *Truncate_tableContext) {}
// ExitTruncate_table is called when production truncate_table is exited.
func (s *BaseTSqlParserListener) ExitTruncate_table(ctx *Truncate_tableContext) {}
// EnterCreate_column_master_key is called when production create_column_master_key is entered.
func (s *BaseTSqlParserListener) EnterCreate_column_master_key(ctx *Create_column_master_keyContext) {
}
// ExitCreate_column_master_key is called when production create_column_master_key is exited.
func (s *BaseTSqlParserListener) ExitCreate_column_master_key(ctx *Create_column_master_keyContext) {}
// EnterAlter_credential is called when production alter_credential is entered.
func (s *BaseTSqlParserListener) EnterAlter_credential(ctx *Alter_credentialContext) {}
// ExitAlter_credential is called when production alter_credential is exited.
func (s *BaseTSqlParserListener) ExitAlter_credential(ctx *Alter_credentialContext) {}
// EnterCreate_credential is called when production create_credential is entered.
func (s *BaseTSqlParserListener) EnterCreate_credential(ctx *Create_credentialContext) {}
// ExitCreate_credential is called when production create_credential is exited.
func (s *BaseTSqlParserListener) ExitCreate_credential(ctx *Create_credentialContext) {}
// EnterAlter_cryptographic_provider is called when production alter_cryptographic_provider is entered.
func (s *BaseTSqlParserListener) EnterAlter_cryptographic_provider(ctx *Alter_cryptographic_providerContext) {
}
// ExitAlter_cryptographic_provider is called when production alter_cryptographic_provider is exited.
func (s *BaseTSqlParserListener) ExitAlter_cryptographic_provider(ctx *Alter_cryptographic_providerContext) {
}
// EnterCreate_cryptographic_provider is called when production create_cryptographic_provider is entered.
func (s *BaseTSqlParserListener) EnterCreate_cryptographic_provider(ctx *Create_cryptographic_providerContext) {
}
// ExitCreate_cryptographic_provider is called when production create_cryptographic_provider is exited.
func (s *BaseTSqlParserListener) ExitCreate_cryptographic_provider(ctx *Create_cryptographic_providerContext) {
}
// EnterCreate_endpoint is called when production create_endpoint is entered.
func (s *BaseTSqlParserListener) EnterCreate_endpoint(ctx *Create_endpointContext) {}
// ExitCreate_endpoint is called when production create_endpoint is exited.
func (s *BaseTSqlParserListener) ExitCreate_endpoint(ctx *Create_endpointContext) {}
// EnterEndpoint_encryption_alogorithm_clause is called when production endpoint_encryption_alogorithm_clause is entered.
func (s *BaseTSqlParserListener) EnterEndpoint_encryption_alogorithm_clause(ctx *Endpoint_encryption_alogorithm_clauseContext) {
}