-
Notifications
You must be signed in to change notification settings - Fork 3
/
snowflakeparser_base_listener.go
3413 lines (2336 loc) · 179 KB
/
snowflakeparser_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 SnowflakeParser.g4 by ANTLR 4.13.1. DO NOT EDIT.
package parser // SnowflakeParser
import "github.com/antlr4-go/antlr/v4"
// BaseSnowflakeParserListener is a complete listener for a parse tree produced by SnowflakeParser.
type BaseSnowflakeParserListener struct{}
var _ SnowflakeParserListener = &BaseSnowflakeParserListener{}
// VisitTerminal is called when a terminal node is visited.
func (s *BaseSnowflakeParserListener) VisitTerminal(node antlr.TerminalNode) {}
// VisitErrorNode is called when an error node is visited.
func (s *BaseSnowflakeParserListener) VisitErrorNode(node antlr.ErrorNode) {}
// EnterEveryRule is called when any rule is entered.
func (s *BaseSnowflakeParserListener) EnterEveryRule(ctx antlr.ParserRuleContext) {}
// ExitEveryRule is called when any rule is exited.
func (s *BaseSnowflakeParserListener) ExitEveryRule(ctx antlr.ParserRuleContext) {}
// EnterSnowflake_file is called when production snowflake_file is entered.
func (s *BaseSnowflakeParserListener) EnterSnowflake_file(ctx *Snowflake_fileContext) {}
// ExitSnowflake_file is called when production snowflake_file is exited.
func (s *BaseSnowflakeParserListener) ExitSnowflake_file(ctx *Snowflake_fileContext) {}
// EnterBatch is called when production batch is entered.
func (s *BaseSnowflakeParserListener) EnterBatch(ctx *BatchContext) {}
// ExitBatch is called when production batch is exited.
func (s *BaseSnowflakeParserListener) ExitBatch(ctx *BatchContext) {}
// EnterSql_command is called when production sql_command is entered.
func (s *BaseSnowflakeParserListener) EnterSql_command(ctx *Sql_commandContext) {}
// ExitSql_command is called when production sql_command is exited.
func (s *BaseSnowflakeParserListener) ExitSql_command(ctx *Sql_commandContext) {}
// EnterDdl_command is called when production ddl_command is entered.
func (s *BaseSnowflakeParserListener) EnterDdl_command(ctx *Ddl_commandContext) {}
// ExitDdl_command is called when production ddl_command is exited.
func (s *BaseSnowflakeParserListener) ExitDdl_command(ctx *Ddl_commandContext) {}
// EnterDml_command is called when production dml_command is entered.
func (s *BaseSnowflakeParserListener) EnterDml_command(ctx *Dml_commandContext) {}
// ExitDml_command is called when production dml_command is exited.
func (s *BaseSnowflakeParserListener) ExitDml_command(ctx *Dml_commandContext) {}
// EnterInsert_statement is called when production insert_statement is entered.
func (s *BaseSnowflakeParserListener) EnterInsert_statement(ctx *Insert_statementContext) {}
// ExitInsert_statement is called when production insert_statement is exited.
func (s *BaseSnowflakeParserListener) ExitInsert_statement(ctx *Insert_statementContext) {}
// EnterInsert_multi_table_statement is called when production insert_multi_table_statement is entered.
func (s *BaseSnowflakeParserListener) EnterInsert_multi_table_statement(ctx *Insert_multi_table_statementContext) {
}
// ExitInsert_multi_table_statement is called when production insert_multi_table_statement is exited.
func (s *BaseSnowflakeParserListener) ExitInsert_multi_table_statement(ctx *Insert_multi_table_statementContext) {
}
// EnterInto_clause2 is called when production into_clause2 is entered.
func (s *BaseSnowflakeParserListener) EnterInto_clause2(ctx *Into_clause2Context) {}
// ExitInto_clause2 is called when production into_clause2 is exited.
func (s *BaseSnowflakeParserListener) ExitInto_clause2(ctx *Into_clause2Context) {}
// EnterValues_list is called when production values_list is entered.
func (s *BaseSnowflakeParserListener) EnterValues_list(ctx *Values_listContext) {}
// ExitValues_list is called when production values_list is exited.
func (s *BaseSnowflakeParserListener) ExitValues_list(ctx *Values_listContext) {}
// EnterValue_item is called when production value_item is entered.
func (s *BaseSnowflakeParserListener) EnterValue_item(ctx *Value_itemContext) {}
// ExitValue_item is called when production value_item is exited.
func (s *BaseSnowflakeParserListener) ExitValue_item(ctx *Value_itemContext) {}
// EnterMerge_statement is called when production merge_statement is entered.
func (s *BaseSnowflakeParserListener) EnterMerge_statement(ctx *Merge_statementContext) {}
// ExitMerge_statement is called when production merge_statement is exited.
func (s *BaseSnowflakeParserListener) ExitMerge_statement(ctx *Merge_statementContext) {}
// EnterMerge_matches is called when production merge_matches is entered.
func (s *BaseSnowflakeParserListener) EnterMerge_matches(ctx *Merge_matchesContext) {}
// ExitMerge_matches is called when production merge_matches is exited.
func (s *BaseSnowflakeParserListener) ExitMerge_matches(ctx *Merge_matchesContext) {}
// EnterMerge_update_delete is called when production merge_update_delete is entered.
func (s *BaseSnowflakeParserListener) EnterMerge_update_delete(ctx *Merge_update_deleteContext) {}
// ExitMerge_update_delete is called when production merge_update_delete is exited.
func (s *BaseSnowflakeParserListener) ExitMerge_update_delete(ctx *Merge_update_deleteContext) {}
// EnterMerge_insert is called when production merge_insert is entered.
func (s *BaseSnowflakeParserListener) EnterMerge_insert(ctx *Merge_insertContext) {}
// ExitMerge_insert is called when production merge_insert is exited.
func (s *BaseSnowflakeParserListener) ExitMerge_insert(ctx *Merge_insertContext) {}
// EnterUpdate_statement is called when production update_statement is entered.
func (s *BaseSnowflakeParserListener) EnterUpdate_statement(ctx *Update_statementContext) {}
// ExitUpdate_statement is called when production update_statement is exited.
func (s *BaseSnowflakeParserListener) ExitUpdate_statement(ctx *Update_statementContext) {}
// EnterTable_or_query is called when production table_or_query is entered.
func (s *BaseSnowflakeParserListener) EnterTable_or_query(ctx *Table_or_queryContext) {}
// ExitTable_or_query is called when production table_or_query is exited.
func (s *BaseSnowflakeParserListener) ExitTable_or_query(ctx *Table_or_queryContext) {}
// EnterDelete_statement is called when production delete_statement is entered.
func (s *BaseSnowflakeParserListener) EnterDelete_statement(ctx *Delete_statementContext) {}
// ExitDelete_statement is called when production delete_statement is exited.
func (s *BaseSnowflakeParserListener) ExitDelete_statement(ctx *Delete_statementContext) {}
// EnterValues_builder is called when production values_builder is entered.
func (s *BaseSnowflakeParserListener) EnterValues_builder(ctx *Values_builderContext) {}
// ExitValues_builder is called when production values_builder is exited.
func (s *BaseSnowflakeParserListener) ExitValues_builder(ctx *Values_builderContext) {}
// EnterOther_command is called when production other_command is entered.
func (s *BaseSnowflakeParserListener) EnterOther_command(ctx *Other_commandContext) {}
// ExitOther_command is called when production other_command is exited.
func (s *BaseSnowflakeParserListener) ExitOther_command(ctx *Other_commandContext) {}
// EnterCopy_into_table is called when production copy_into_table is entered.
func (s *BaseSnowflakeParserListener) EnterCopy_into_table(ctx *Copy_into_tableContext) {}
// ExitCopy_into_table is called when production copy_into_table is exited.
func (s *BaseSnowflakeParserListener) ExitCopy_into_table(ctx *Copy_into_tableContext) {}
// EnterExternal_location is called when production external_location is entered.
func (s *BaseSnowflakeParserListener) EnterExternal_location(ctx *External_locationContext) {}
// ExitExternal_location is called when production external_location is exited.
func (s *BaseSnowflakeParserListener) ExitExternal_location(ctx *External_locationContext) {}
// EnterFiles is called when production files is entered.
func (s *BaseSnowflakeParserListener) EnterFiles(ctx *FilesContext) {}
// ExitFiles is called when production files is exited.
func (s *BaseSnowflakeParserListener) ExitFiles(ctx *FilesContext) {}
// EnterFile_format is called when production file_format is entered.
func (s *BaseSnowflakeParserListener) EnterFile_format(ctx *File_formatContext) {}
// ExitFile_format is called when production file_format is exited.
func (s *BaseSnowflakeParserListener) ExitFile_format(ctx *File_formatContext) {}
// EnterFormat_name is called when production format_name is entered.
func (s *BaseSnowflakeParserListener) EnterFormat_name(ctx *Format_nameContext) {}
// ExitFormat_name is called when production format_name is exited.
func (s *BaseSnowflakeParserListener) ExitFormat_name(ctx *Format_nameContext) {}
// EnterFormat_type is called when production format_type is entered.
func (s *BaseSnowflakeParserListener) EnterFormat_type(ctx *Format_typeContext) {}
// ExitFormat_type is called when production format_type is exited.
func (s *BaseSnowflakeParserListener) ExitFormat_type(ctx *Format_typeContext) {}
// EnterStage_file_format is called when production stage_file_format is entered.
func (s *BaseSnowflakeParserListener) EnterStage_file_format(ctx *Stage_file_formatContext) {}
// ExitStage_file_format is called when production stage_file_format is exited.
func (s *BaseSnowflakeParserListener) ExitStage_file_format(ctx *Stage_file_formatContext) {}
// EnterCopy_into_location is called when production copy_into_location is entered.
func (s *BaseSnowflakeParserListener) EnterCopy_into_location(ctx *Copy_into_locationContext) {}
// ExitCopy_into_location is called when production copy_into_location is exited.
func (s *BaseSnowflakeParserListener) ExitCopy_into_location(ctx *Copy_into_locationContext) {}
// EnterComment is called when production comment is entered.
func (s *BaseSnowflakeParserListener) EnterComment(ctx *CommentContext) {}
// ExitComment is called when production comment is exited.
func (s *BaseSnowflakeParserListener) ExitComment(ctx *CommentContext) {}
// EnterCommit is called when production commit is entered.
func (s *BaseSnowflakeParserListener) EnterCommit(ctx *CommitContext) {}
// ExitCommit is called when production commit is exited.
func (s *BaseSnowflakeParserListener) ExitCommit(ctx *CommitContext) {}
// EnterExecute_immediate is called when production execute_immediate is entered.
func (s *BaseSnowflakeParserListener) EnterExecute_immediate(ctx *Execute_immediateContext) {}
// ExitExecute_immediate is called when production execute_immediate is exited.
func (s *BaseSnowflakeParserListener) ExitExecute_immediate(ctx *Execute_immediateContext) {}
// EnterExecute_task is called when production execute_task is entered.
func (s *BaseSnowflakeParserListener) EnterExecute_task(ctx *Execute_taskContext) {}
// ExitExecute_task is called when production execute_task is exited.
func (s *BaseSnowflakeParserListener) ExitExecute_task(ctx *Execute_taskContext) {}
// EnterExplain is called when production explain is entered.
func (s *BaseSnowflakeParserListener) EnterExplain(ctx *ExplainContext) {}
// ExitExplain is called when production explain is exited.
func (s *BaseSnowflakeParserListener) ExitExplain(ctx *ExplainContext) {}
// EnterParallel is called when production parallel is entered.
func (s *BaseSnowflakeParserListener) EnterParallel(ctx *ParallelContext) {}
// ExitParallel is called when production parallel is exited.
func (s *BaseSnowflakeParserListener) ExitParallel(ctx *ParallelContext) {}
// EnterGet_dml is called when production get_dml is entered.
func (s *BaseSnowflakeParserListener) EnterGet_dml(ctx *Get_dmlContext) {}
// ExitGet_dml is called when production get_dml is exited.
func (s *BaseSnowflakeParserListener) ExitGet_dml(ctx *Get_dmlContext) {}
// EnterGrant_ownership is called when production grant_ownership is entered.
func (s *BaseSnowflakeParserListener) EnterGrant_ownership(ctx *Grant_ownershipContext) {}
// ExitGrant_ownership is called when production grant_ownership is exited.
func (s *BaseSnowflakeParserListener) ExitGrant_ownership(ctx *Grant_ownershipContext) {}
// EnterGrant_to_role is called when production grant_to_role is entered.
func (s *BaseSnowflakeParserListener) EnterGrant_to_role(ctx *Grant_to_roleContext) {}
// ExitGrant_to_role is called when production grant_to_role is exited.
func (s *BaseSnowflakeParserListener) ExitGrant_to_role(ctx *Grant_to_roleContext) {}
// EnterGlobal_privileges is called when production global_privileges is entered.
func (s *BaseSnowflakeParserListener) EnterGlobal_privileges(ctx *Global_privilegesContext) {}
// ExitGlobal_privileges is called when production global_privileges is exited.
func (s *BaseSnowflakeParserListener) ExitGlobal_privileges(ctx *Global_privilegesContext) {}
// EnterGlobal_privilege is called when production global_privilege is entered.
func (s *BaseSnowflakeParserListener) EnterGlobal_privilege(ctx *Global_privilegeContext) {}
// ExitGlobal_privilege is called when production global_privilege is exited.
func (s *BaseSnowflakeParserListener) ExitGlobal_privilege(ctx *Global_privilegeContext) {}
// EnterAccount_object_privileges is called when production account_object_privileges is entered.
func (s *BaseSnowflakeParserListener) EnterAccount_object_privileges(ctx *Account_object_privilegesContext) {
}
// ExitAccount_object_privileges is called when production account_object_privileges is exited.
func (s *BaseSnowflakeParserListener) ExitAccount_object_privileges(ctx *Account_object_privilegesContext) {
}
// EnterAccount_object_privilege is called when production account_object_privilege is entered.
func (s *BaseSnowflakeParserListener) EnterAccount_object_privilege(ctx *Account_object_privilegeContext) {
}
// ExitAccount_object_privilege is called when production account_object_privilege is exited.
func (s *BaseSnowflakeParserListener) ExitAccount_object_privilege(ctx *Account_object_privilegeContext) {
}
// EnterSchema_privileges is called when production schema_privileges is entered.
func (s *BaseSnowflakeParserListener) EnterSchema_privileges(ctx *Schema_privilegesContext) {}
// ExitSchema_privileges is called when production schema_privileges is exited.
func (s *BaseSnowflakeParserListener) ExitSchema_privileges(ctx *Schema_privilegesContext) {}
// EnterSchema_privilege is called when production schema_privilege is entered.
func (s *BaseSnowflakeParserListener) EnterSchema_privilege(ctx *Schema_privilegeContext) {}
// ExitSchema_privilege is called when production schema_privilege is exited.
func (s *BaseSnowflakeParserListener) ExitSchema_privilege(ctx *Schema_privilegeContext) {}
// EnterSchema_object_privileges is called when production schema_object_privileges is entered.
func (s *BaseSnowflakeParserListener) EnterSchema_object_privileges(ctx *Schema_object_privilegesContext) {
}
// ExitSchema_object_privileges is called when production schema_object_privileges is exited.
func (s *BaseSnowflakeParserListener) ExitSchema_object_privileges(ctx *Schema_object_privilegesContext) {
}
// EnterSchema_object_privilege is called when production schema_object_privilege is entered.
func (s *BaseSnowflakeParserListener) EnterSchema_object_privilege(ctx *Schema_object_privilegeContext) {
}
// ExitSchema_object_privilege is called when production schema_object_privilege is exited.
func (s *BaseSnowflakeParserListener) ExitSchema_object_privilege(ctx *Schema_object_privilegeContext) {
}
// EnterGrant_to_share is called when production grant_to_share is entered.
func (s *BaseSnowflakeParserListener) EnterGrant_to_share(ctx *Grant_to_shareContext) {}
// ExitGrant_to_share is called when production grant_to_share is exited.
func (s *BaseSnowflakeParserListener) ExitGrant_to_share(ctx *Grant_to_shareContext) {}
// EnterObject_privilege is called when production object_privilege is entered.
func (s *BaseSnowflakeParserListener) EnterObject_privilege(ctx *Object_privilegeContext) {}
// ExitObject_privilege is called when production object_privilege is exited.
func (s *BaseSnowflakeParserListener) ExitObject_privilege(ctx *Object_privilegeContext) {}
// EnterGrant_role is called when production grant_role is entered.
func (s *BaseSnowflakeParserListener) EnterGrant_role(ctx *Grant_roleContext) {}
// ExitGrant_role is called when production grant_role is exited.
func (s *BaseSnowflakeParserListener) ExitGrant_role(ctx *Grant_roleContext) {}
// EnterRole_name is called when production role_name is entered.
func (s *BaseSnowflakeParserListener) EnterRole_name(ctx *Role_nameContext) {}
// ExitRole_name is called when production role_name is exited.
func (s *BaseSnowflakeParserListener) ExitRole_name(ctx *Role_nameContext) {}
// EnterSystem_defined_role is called when production system_defined_role is entered.
func (s *BaseSnowflakeParserListener) EnterSystem_defined_role(ctx *System_defined_roleContext) {}
// ExitSystem_defined_role is called when production system_defined_role is exited.
func (s *BaseSnowflakeParserListener) ExitSystem_defined_role(ctx *System_defined_roleContext) {}
// EnterList is called when production list is entered.
func (s *BaseSnowflakeParserListener) EnterList(ctx *ListContext) {}
// ExitList is called when production list is exited.
func (s *BaseSnowflakeParserListener) ExitList(ctx *ListContext) {}
// EnterInternal_stage is called when production internal_stage is entered.
func (s *BaseSnowflakeParserListener) EnterInternal_stage(ctx *Internal_stageContext) {}
// ExitInternal_stage is called when production internal_stage is exited.
func (s *BaseSnowflakeParserListener) ExitInternal_stage(ctx *Internal_stageContext) {}
// EnterExternal_stage is called when production external_stage is entered.
func (s *BaseSnowflakeParserListener) EnterExternal_stage(ctx *External_stageContext) {}
// ExitExternal_stage is called when production external_stage is exited.
func (s *BaseSnowflakeParserListener) ExitExternal_stage(ctx *External_stageContext) {}
// EnterPut is called when production put is entered.
func (s *BaseSnowflakeParserListener) EnterPut(ctx *PutContext) {}
// ExitPut is called when production put is exited.
func (s *BaseSnowflakeParserListener) ExitPut(ctx *PutContext) {}
// EnterRemove is called when production remove is entered.
func (s *BaseSnowflakeParserListener) EnterRemove(ctx *RemoveContext) {}
// ExitRemove is called when production remove is exited.
func (s *BaseSnowflakeParserListener) ExitRemove(ctx *RemoveContext) {}
// EnterRevoke_from_role is called when production revoke_from_role is entered.
func (s *BaseSnowflakeParserListener) EnterRevoke_from_role(ctx *Revoke_from_roleContext) {}
// ExitRevoke_from_role is called when production revoke_from_role is exited.
func (s *BaseSnowflakeParserListener) ExitRevoke_from_role(ctx *Revoke_from_roleContext) {}
// EnterRevoke_from_share is called when production revoke_from_share is entered.
func (s *BaseSnowflakeParserListener) EnterRevoke_from_share(ctx *Revoke_from_shareContext) {}
// ExitRevoke_from_share is called when production revoke_from_share is exited.
func (s *BaseSnowflakeParserListener) ExitRevoke_from_share(ctx *Revoke_from_shareContext) {}
// EnterRevoke_role is called when production revoke_role is entered.
func (s *BaseSnowflakeParserListener) EnterRevoke_role(ctx *Revoke_roleContext) {}
// ExitRevoke_role is called when production revoke_role is exited.
func (s *BaseSnowflakeParserListener) ExitRevoke_role(ctx *Revoke_roleContext) {}
// EnterRollback is called when production rollback is entered.
func (s *BaseSnowflakeParserListener) EnterRollback(ctx *RollbackContext) {}
// ExitRollback is called when production rollback is exited.
func (s *BaseSnowflakeParserListener) ExitRollback(ctx *RollbackContext) {}
// EnterSet is called when production set is entered.
func (s *BaseSnowflakeParserListener) EnterSet(ctx *SetContext) {}
// ExitSet is called when production set is exited.
func (s *BaseSnowflakeParserListener) ExitSet(ctx *SetContext) {}
// EnterTruncate_materialized_view is called when production truncate_materialized_view is entered.
func (s *BaseSnowflakeParserListener) EnterTruncate_materialized_view(ctx *Truncate_materialized_viewContext) {
}
// ExitTruncate_materialized_view is called when production truncate_materialized_view is exited.
func (s *BaseSnowflakeParserListener) ExitTruncate_materialized_view(ctx *Truncate_materialized_viewContext) {
}
// EnterTruncate_table is called when production truncate_table is entered.
func (s *BaseSnowflakeParserListener) EnterTruncate_table(ctx *Truncate_tableContext) {}
// ExitTruncate_table is called when production truncate_table is exited.
func (s *BaseSnowflakeParserListener) ExitTruncate_table(ctx *Truncate_tableContext) {}
// EnterUnset is called when production unset is entered.
func (s *BaseSnowflakeParserListener) EnterUnset(ctx *UnsetContext) {}
// ExitUnset is called when production unset is exited.
func (s *BaseSnowflakeParserListener) ExitUnset(ctx *UnsetContext) {}
// EnterAlter_command is called when production alter_command is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_command(ctx *Alter_commandContext) {}
// ExitAlter_command is called when production alter_command is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_command(ctx *Alter_commandContext) {}
// EnterAccount_params is called when production account_params is entered.
func (s *BaseSnowflakeParserListener) EnterAccount_params(ctx *Account_paramsContext) {}
// ExitAccount_params is called when production account_params is exited.
func (s *BaseSnowflakeParserListener) ExitAccount_params(ctx *Account_paramsContext) {}
// EnterObject_params is called when production object_params is entered.
func (s *BaseSnowflakeParserListener) EnterObject_params(ctx *Object_paramsContext) {}
// ExitObject_params is called when production object_params is exited.
func (s *BaseSnowflakeParserListener) ExitObject_params(ctx *Object_paramsContext) {}
// EnterDefault_ddl_collation is called when production default_ddl_collation is entered.
func (s *BaseSnowflakeParserListener) EnterDefault_ddl_collation(ctx *Default_ddl_collationContext) {}
// ExitDefault_ddl_collation is called when production default_ddl_collation is exited.
func (s *BaseSnowflakeParserListener) ExitDefault_ddl_collation(ctx *Default_ddl_collationContext) {}
// EnterObject_properties is called when production object_properties is entered.
func (s *BaseSnowflakeParserListener) EnterObject_properties(ctx *Object_propertiesContext) {}
// ExitObject_properties is called when production object_properties is exited.
func (s *BaseSnowflakeParserListener) ExitObject_properties(ctx *Object_propertiesContext) {}
// EnterSession_params is called when production session_params is entered.
func (s *BaseSnowflakeParserListener) EnterSession_params(ctx *Session_paramsContext) {}
// ExitSession_params is called when production session_params is exited.
func (s *BaseSnowflakeParserListener) ExitSession_params(ctx *Session_paramsContext) {}
// EnterAlter_account is called when production alter_account is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_account(ctx *Alter_accountContext) {}
// ExitAlter_account is called when production alter_account is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_account(ctx *Alter_accountContext) {}
// EnterEnabled_true_false is called when production enabled_true_false is entered.
func (s *BaseSnowflakeParserListener) EnterEnabled_true_false(ctx *Enabled_true_falseContext) {}
// ExitEnabled_true_false is called when production enabled_true_false is exited.
func (s *BaseSnowflakeParserListener) ExitEnabled_true_false(ctx *Enabled_true_falseContext) {}
// EnterAlter_alert is called when production alter_alert is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_alert(ctx *Alter_alertContext) {}
// ExitAlter_alert is called when production alter_alert is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_alert(ctx *Alter_alertContext) {}
// EnterResume_suspend is called when production resume_suspend is entered.
func (s *BaseSnowflakeParserListener) EnterResume_suspend(ctx *Resume_suspendContext) {}
// ExitResume_suspend is called when production resume_suspend is exited.
func (s *BaseSnowflakeParserListener) ExitResume_suspend(ctx *Resume_suspendContext) {}
// EnterAlert_set_clause is called when production alert_set_clause is entered.
func (s *BaseSnowflakeParserListener) EnterAlert_set_clause(ctx *Alert_set_clauseContext) {}
// ExitAlert_set_clause is called when production alert_set_clause is exited.
func (s *BaseSnowflakeParserListener) ExitAlert_set_clause(ctx *Alert_set_clauseContext) {}
// EnterAlert_unset_clause is called when production alert_unset_clause is entered.
func (s *BaseSnowflakeParserListener) EnterAlert_unset_clause(ctx *Alert_unset_clauseContext) {}
// ExitAlert_unset_clause is called when production alert_unset_clause is exited.
func (s *BaseSnowflakeParserListener) ExitAlert_unset_clause(ctx *Alert_unset_clauseContext) {}
// EnterAlter_api_integration is called when production alter_api_integration is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_api_integration(ctx *Alter_api_integrationContext) {}
// ExitAlter_api_integration is called when production alter_api_integration is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_api_integration(ctx *Alter_api_integrationContext) {}
// EnterApi_integration_property is called when production api_integration_property is entered.
func (s *BaseSnowflakeParserListener) EnterApi_integration_property(ctx *Api_integration_propertyContext) {
}
// ExitApi_integration_property is called when production api_integration_property is exited.
func (s *BaseSnowflakeParserListener) ExitApi_integration_property(ctx *Api_integration_propertyContext) {
}
// EnterAlter_connection is called when production alter_connection is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_connection(ctx *Alter_connectionContext) {}
// ExitAlter_connection is called when production alter_connection is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_connection(ctx *Alter_connectionContext) {}
// EnterAlter_database is called when production alter_database is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_database(ctx *Alter_databaseContext) {}
// ExitAlter_database is called when production alter_database is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_database(ctx *Alter_databaseContext) {}
// EnterDatabase_property is called when production database_property is entered.
func (s *BaseSnowflakeParserListener) EnterDatabase_property(ctx *Database_propertyContext) {}
// ExitDatabase_property is called when production database_property is exited.
func (s *BaseSnowflakeParserListener) ExitDatabase_property(ctx *Database_propertyContext) {}
// EnterAccount_id_list is called when production account_id_list is entered.
func (s *BaseSnowflakeParserListener) EnterAccount_id_list(ctx *Account_id_listContext) {}
// ExitAccount_id_list is called when production account_id_list is exited.
func (s *BaseSnowflakeParserListener) ExitAccount_id_list(ctx *Account_id_listContext) {}
// EnterAlter_external_table is called when production alter_external_table is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_external_table(ctx *Alter_external_tableContext) {}
// ExitAlter_external_table is called when production alter_external_table is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_external_table(ctx *Alter_external_tableContext) {}
// EnterIgnore_edition_check is called when production ignore_edition_check is entered.
func (s *BaseSnowflakeParserListener) EnterIgnore_edition_check(ctx *Ignore_edition_checkContext) {}
// ExitIgnore_edition_check is called when production ignore_edition_check is exited.
func (s *BaseSnowflakeParserListener) ExitIgnore_edition_check(ctx *Ignore_edition_checkContext) {}
// EnterReplication_schedule is called when production replication_schedule is entered.
func (s *BaseSnowflakeParserListener) EnterReplication_schedule(ctx *Replication_scheduleContext) {}
// ExitReplication_schedule is called when production replication_schedule is exited.
func (s *BaseSnowflakeParserListener) ExitReplication_schedule(ctx *Replication_scheduleContext) {}
// EnterDb_name_list is called when production db_name_list is entered.
func (s *BaseSnowflakeParserListener) EnterDb_name_list(ctx *Db_name_listContext) {}
// ExitDb_name_list is called when production db_name_list is exited.
func (s *BaseSnowflakeParserListener) ExitDb_name_list(ctx *Db_name_listContext) {}
// EnterShare_name_list is called when production share_name_list is entered.
func (s *BaseSnowflakeParserListener) EnterShare_name_list(ctx *Share_name_listContext) {}
// ExitShare_name_list is called when production share_name_list is exited.
func (s *BaseSnowflakeParserListener) ExitShare_name_list(ctx *Share_name_listContext) {}
// EnterFull_acct_list is called when production full_acct_list is entered.
func (s *BaseSnowflakeParserListener) EnterFull_acct_list(ctx *Full_acct_listContext) {}
// ExitFull_acct_list is called when production full_acct_list is exited.
func (s *BaseSnowflakeParserListener) ExitFull_acct_list(ctx *Full_acct_listContext) {}
// EnterAlter_failover_group is called when production alter_failover_group is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_failover_group(ctx *Alter_failover_groupContext) {}
// ExitAlter_failover_group is called when production alter_failover_group is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_failover_group(ctx *Alter_failover_groupContext) {}
// EnterAlter_file_format is called when production alter_file_format is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_file_format(ctx *Alter_file_formatContext) {}
// ExitAlter_file_format is called when production alter_file_format is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_file_format(ctx *Alter_file_formatContext) {}
// EnterAlter_function is called when production alter_function is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_function(ctx *Alter_functionContext) {}
// ExitAlter_function is called when production alter_function is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_function(ctx *Alter_functionContext) {}
// EnterAlter_function_signature is called when production alter_function_signature is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_function_signature(ctx *Alter_function_signatureContext) {
}
// ExitAlter_function_signature is called when production alter_function_signature is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_function_signature(ctx *Alter_function_signatureContext) {
}
// EnterData_type_list is called when production data_type_list is entered.
func (s *BaseSnowflakeParserListener) EnterData_type_list(ctx *Data_type_listContext) {}
// ExitData_type_list is called when production data_type_list is exited.
func (s *BaseSnowflakeParserListener) ExitData_type_list(ctx *Data_type_listContext) {}
// EnterAlter_masking_policy is called when production alter_masking_policy is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_masking_policy(ctx *Alter_masking_policyContext) {}
// ExitAlter_masking_policy is called when production alter_masking_policy is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_masking_policy(ctx *Alter_masking_policyContext) {}
// EnterAlter_materialized_view is called when production alter_materialized_view is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_materialized_view(ctx *Alter_materialized_viewContext) {
}
// ExitAlter_materialized_view is called when production alter_materialized_view is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_materialized_view(ctx *Alter_materialized_viewContext) {
}
// EnterAlter_network_policy is called when production alter_network_policy is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_network_policy(ctx *Alter_network_policyContext) {}
// ExitAlter_network_policy is called when production alter_network_policy is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_network_policy(ctx *Alter_network_policyContext) {}
// EnterAlter_notification_integration is called when production alter_notification_integration is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_notification_integration(ctx *Alter_notification_integrationContext) {
}
// ExitAlter_notification_integration is called when production alter_notification_integration is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_notification_integration(ctx *Alter_notification_integrationContext) {
}
// EnterAlter_pipe is called when production alter_pipe is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_pipe(ctx *Alter_pipeContext) {}
// ExitAlter_pipe is called when production alter_pipe is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_pipe(ctx *Alter_pipeContext) {}
// EnterAlter_procedure is called when production alter_procedure is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_procedure(ctx *Alter_procedureContext) {}
// ExitAlter_procedure is called when production alter_procedure is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_procedure(ctx *Alter_procedureContext) {}
// EnterAlter_replication_group is called when production alter_replication_group is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_replication_group(ctx *Alter_replication_groupContext) {
}
// ExitAlter_replication_group is called when production alter_replication_group is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_replication_group(ctx *Alter_replication_groupContext) {
}
// EnterCredit_quota is called when production credit_quota is entered.
func (s *BaseSnowflakeParserListener) EnterCredit_quota(ctx *Credit_quotaContext) {}
// ExitCredit_quota is called when production credit_quota is exited.
func (s *BaseSnowflakeParserListener) ExitCredit_quota(ctx *Credit_quotaContext) {}
// EnterFrequency is called when production frequency is entered.
func (s *BaseSnowflakeParserListener) EnterFrequency(ctx *FrequencyContext) {}
// ExitFrequency is called when production frequency is exited.
func (s *BaseSnowflakeParserListener) ExitFrequency(ctx *FrequencyContext) {}
// EnterNotify_users is called when production notify_users is entered.
func (s *BaseSnowflakeParserListener) EnterNotify_users(ctx *Notify_usersContext) {}
// ExitNotify_users is called when production notify_users is exited.
func (s *BaseSnowflakeParserListener) ExitNotify_users(ctx *Notify_usersContext) {}
// EnterTriggerDefinition is called when production triggerDefinition is entered.
func (s *BaseSnowflakeParserListener) EnterTriggerDefinition(ctx *TriggerDefinitionContext) {}
// ExitTriggerDefinition is called when production triggerDefinition is exited.
func (s *BaseSnowflakeParserListener) ExitTriggerDefinition(ctx *TriggerDefinitionContext) {}
// EnterAlter_resource_monitor is called when production alter_resource_monitor is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_resource_monitor(ctx *Alter_resource_monitorContext) {
}
// ExitAlter_resource_monitor is called when production alter_resource_monitor is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_resource_monitor(ctx *Alter_resource_monitorContext) {
}
// EnterAlter_role is called when production alter_role is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_role(ctx *Alter_roleContext) {}
// ExitAlter_role is called when production alter_role is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_role(ctx *Alter_roleContext) {}
// EnterAlter_row_access_policy is called when production alter_row_access_policy is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_row_access_policy(ctx *Alter_row_access_policyContext) {
}
// ExitAlter_row_access_policy is called when production alter_row_access_policy is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_row_access_policy(ctx *Alter_row_access_policyContext) {
}
// EnterAlter_schema is called when production alter_schema is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_schema(ctx *Alter_schemaContext) {}
// ExitAlter_schema is called when production alter_schema is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_schema(ctx *Alter_schemaContext) {}
// EnterSchema_property is called when production schema_property is entered.
func (s *BaseSnowflakeParserListener) EnterSchema_property(ctx *Schema_propertyContext) {}
// ExitSchema_property is called when production schema_property is exited.
func (s *BaseSnowflakeParserListener) ExitSchema_property(ctx *Schema_propertyContext) {}
// EnterAlter_security_integration is called when production alter_security_integration is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_security_integration(ctx *Alter_security_integrationContext) {
}
// ExitAlter_security_integration is called when production alter_security_integration is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_security_integration(ctx *Alter_security_integrationContext) {
}
// EnterAlter_security_integration_external_oauth is called when production alter_security_integration_external_oauth is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_security_integration_external_oauth(ctx *Alter_security_integration_external_oauthContext) {
}
// ExitAlter_security_integration_external_oauth is called when production alter_security_integration_external_oauth is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_security_integration_external_oauth(ctx *Alter_security_integration_external_oauthContext) {
}
// EnterSecurity_integration_external_oauth_property is called when production security_integration_external_oauth_property is entered.
func (s *BaseSnowflakeParserListener) EnterSecurity_integration_external_oauth_property(ctx *Security_integration_external_oauth_propertyContext) {
}
// ExitSecurity_integration_external_oauth_property is called when production security_integration_external_oauth_property is exited.
func (s *BaseSnowflakeParserListener) ExitSecurity_integration_external_oauth_property(ctx *Security_integration_external_oauth_propertyContext) {
}
// EnterAlter_security_integration_snowflake_oauth is called when production alter_security_integration_snowflake_oauth is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_security_integration_snowflake_oauth(ctx *Alter_security_integration_snowflake_oauthContext) {
}
// ExitAlter_security_integration_snowflake_oauth is called when production alter_security_integration_snowflake_oauth is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_security_integration_snowflake_oauth(ctx *Alter_security_integration_snowflake_oauthContext) {
}
// EnterSecurity_integration_snowflake_oauth_property is called when production security_integration_snowflake_oauth_property is entered.
func (s *BaseSnowflakeParserListener) EnterSecurity_integration_snowflake_oauth_property(ctx *Security_integration_snowflake_oauth_propertyContext) {
}
// ExitSecurity_integration_snowflake_oauth_property is called when production security_integration_snowflake_oauth_property is exited.
func (s *BaseSnowflakeParserListener) ExitSecurity_integration_snowflake_oauth_property(ctx *Security_integration_snowflake_oauth_propertyContext) {
}
// EnterAlter_security_integration_saml2 is called when production alter_security_integration_saml2 is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_security_integration_saml2(ctx *Alter_security_integration_saml2Context) {
}
// ExitAlter_security_integration_saml2 is called when production alter_security_integration_saml2 is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_security_integration_saml2(ctx *Alter_security_integration_saml2Context) {
}
// EnterAlter_security_integration_scim is called when production alter_security_integration_scim is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_security_integration_scim(ctx *Alter_security_integration_scimContext) {
}
// ExitAlter_security_integration_scim is called when production alter_security_integration_scim is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_security_integration_scim(ctx *Alter_security_integration_scimContext) {
}
// EnterSecurity_integration_scim_property is called when production security_integration_scim_property is entered.
func (s *BaseSnowflakeParserListener) EnterSecurity_integration_scim_property(ctx *Security_integration_scim_propertyContext) {
}
// ExitSecurity_integration_scim_property is called when production security_integration_scim_property is exited.
func (s *BaseSnowflakeParserListener) ExitSecurity_integration_scim_property(ctx *Security_integration_scim_propertyContext) {
}
// EnterAlter_sequence is called when production alter_sequence is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_sequence(ctx *Alter_sequenceContext) {}
// ExitAlter_sequence is called when production alter_sequence is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_sequence(ctx *Alter_sequenceContext) {}
// EnterAlter_session is called when production alter_session is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_session(ctx *Alter_sessionContext) {}
// ExitAlter_session is called when production alter_session is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_session(ctx *Alter_sessionContext) {}
// EnterAlter_session_policy is called when production alter_session_policy is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_session_policy(ctx *Alter_session_policyContext) {}
// ExitAlter_session_policy is called when production alter_session_policy is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_session_policy(ctx *Alter_session_policyContext) {}
// EnterAlter_share is called when production alter_share is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_share(ctx *Alter_shareContext) {}
// ExitAlter_share is called when production alter_share is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_share(ctx *Alter_shareContext) {}
// EnterAlter_stage is called when production alter_stage is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_stage(ctx *Alter_stageContext) {}
// ExitAlter_stage is called when production alter_stage is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_stage(ctx *Alter_stageContext) {}
// EnterAlter_storage_integration is called when production alter_storage_integration is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_storage_integration(ctx *Alter_storage_integrationContext) {
}
// ExitAlter_storage_integration is called when production alter_storage_integration is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_storage_integration(ctx *Alter_storage_integrationContext) {
}
// EnterAlter_stream is called when production alter_stream is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_stream(ctx *Alter_streamContext) {}
// ExitAlter_stream is called when production alter_stream is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_stream(ctx *Alter_streamContext) {}
// EnterAlter_table is called when production alter_table is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_table(ctx *Alter_tableContext) {}
// ExitAlter_table is called when production alter_table is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_table(ctx *Alter_tableContext) {}
// EnterClustering_action is called when production clustering_action is entered.
func (s *BaseSnowflakeParserListener) EnterClustering_action(ctx *Clustering_actionContext) {}
// ExitClustering_action is called when production clustering_action is exited.
func (s *BaseSnowflakeParserListener) ExitClustering_action(ctx *Clustering_actionContext) {}
// EnterTable_column_action is called when production table_column_action is entered.
func (s *BaseSnowflakeParserListener) EnterTable_column_action(ctx *Table_column_actionContext) {}
// ExitTable_column_action is called when production table_column_action is exited.
func (s *BaseSnowflakeParserListener) ExitTable_column_action(ctx *Table_column_actionContext) {}
// EnterInline_constraint is called when production inline_constraint is entered.
func (s *BaseSnowflakeParserListener) EnterInline_constraint(ctx *Inline_constraintContext) {}
// ExitInline_constraint is called when production inline_constraint is exited.
func (s *BaseSnowflakeParserListener) ExitInline_constraint(ctx *Inline_constraintContext) {}
// EnterConstraint_properties is called when production constraint_properties is entered.
func (s *BaseSnowflakeParserListener) EnterConstraint_properties(ctx *Constraint_propertiesContext) {}
// ExitConstraint_properties is called when production constraint_properties is exited.
func (s *BaseSnowflakeParserListener) ExitConstraint_properties(ctx *Constraint_propertiesContext) {}
// EnterExt_table_column_action is called when production ext_table_column_action is entered.
func (s *BaseSnowflakeParserListener) EnterExt_table_column_action(ctx *Ext_table_column_actionContext) {
}
// ExitExt_table_column_action is called when production ext_table_column_action is exited.
func (s *BaseSnowflakeParserListener) ExitExt_table_column_action(ctx *Ext_table_column_actionContext) {
}
// EnterConstraint_action is called when production constraint_action is entered.
func (s *BaseSnowflakeParserListener) EnterConstraint_action(ctx *Constraint_actionContext) {}
// ExitConstraint_action is called when production constraint_action is exited.
func (s *BaseSnowflakeParserListener) ExitConstraint_action(ctx *Constraint_actionContext) {}
// EnterSearch_optimization_action is called when production search_optimization_action is entered.
func (s *BaseSnowflakeParserListener) EnterSearch_optimization_action(ctx *Search_optimization_actionContext) {
}
// ExitSearch_optimization_action is called when production search_optimization_action is exited.
func (s *BaseSnowflakeParserListener) ExitSearch_optimization_action(ctx *Search_optimization_actionContext) {
}
// EnterSearch_method_with_target is called when production search_method_with_target is entered.
func (s *BaseSnowflakeParserListener) EnterSearch_method_with_target(ctx *Search_method_with_targetContext) {
}
// ExitSearch_method_with_target is called when production search_method_with_target is exited.
func (s *BaseSnowflakeParserListener) ExitSearch_method_with_target(ctx *Search_method_with_targetContext) {
}
// EnterAlter_table_alter_column is called when production alter_table_alter_column is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_table_alter_column(ctx *Alter_table_alter_columnContext) {
}
// ExitAlter_table_alter_column is called when production alter_table_alter_column is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_table_alter_column(ctx *Alter_table_alter_columnContext) {
}
// EnterAlter_column_decl_list is called when production alter_column_decl_list is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_column_decl_list(ctx *Alter_column_decl_listContext) {
}
// ExitAlter_column_decl_list is called when production alter_column_decl_list is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_column_decl_list(ctx *Alter_column_decl_listContext) {
}
// EnterAlter_column_decl is called when production alter_column_decl is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_column_decl(ctx *Alter_column_declContext) {}
// ExitAlter_column_decl is called when production alter_column_decl is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_column_decl(ctx *Alter_column_declContext) {}
// EnterAlter_column_opts is called when production alter_column_opts is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_column_opts(ctx *Alter_column_optsContext) {}
// ExitAlter_column_opts is called when production alter_column_opts is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_column_opts(ctx *Alter_column_optsContext) {}
// EnterColumn_set_tags is called when production column_set_tags is entered.
func (s *BaseSnowflakeParserListener) EnterColumn_set_tags(ctx *Column_set_tagsContext) {}
// ExitColumn_set_tags is called when production column_set_tags is exited.
func (s *BaseSnowflakeParserListener) ExitColumn_set_tags(ctx *Column_set_tagsContext) {}
// EnterColumn_unset_tags is called when production column_unset_tags is entered.
func (s *BaseSnowflakeParserListener) EnterColumn_unset_tags(ctx *Column_unset_tagsContext) {}
// ExitColumn_unset_tags is called when production column_unset_tags is exited.
func (s *BaseSnowflakeParserListener) ExitColumn_unset_tags(ctx *Column_unset_tagsContext) {}
// EnterAlter_tag is called when production alter_tag is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_tag(ctx *Alter_tagContext) {}
// ExitAlter_tag is called when production alter_tag is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_tag(ctx *Alter_tagContext) {}
// EnterAlter_task is called when production alter_task is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_task(ctx *Alter_taskContext) {}
// ExitAlter_task is called when production alter_task is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_task(ctx *Alter_taskContext) {}
// EnterAlter_user is called when production alter_user is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_user(ctx *Alter_userContext) {}
// ExitAlter_user is called when production alter_user is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_user(ctx *Alter_userContext) {}
// EnterAlter_view is called when production alter_view is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_view(ctx *Alter_viewContext) {}
// ExitAlter_view is called when production alter_view is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_view(ctx *Alter_viewContext) {}
// EnterAlter_modify is called when production alter_modify is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_modify(ctx *Alter_modifyContext) {}
// ExitAlter_modify is called when production alter_modify is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_modify(ctx *Alter_modifyContext) {}
// EnterAlter_warehouse is called when production alter_warehouse is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_warehouse(ctx *Alter_warehouseContext) {}
// ExitAlter_warehouse is called when production alter_warehouse is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_warehouse(ctx *Alter_warehouseContext) {}
// EnterAlter_connection_opts is called when production alter_connection_opts is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_connection_opts(ctx *Alter_connection_optsContext) {}
// ExitAlter_connection_opts is called when production alter_connection_opts is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_connection_opts(ctx *Alter_connection_optsContext) {}
// EnterAlter_user_opts is called when production alter_user_opts is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_user_opts(ctx *Alter_user_optsContext) {}
// ExitAlter_user_opts is called when production alter_user_opts is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_user_opts(ctx *Alter_user_optsContext) {}
// EnterAlter_tag_opts is called when production alter_tag_opts is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_tag_opts(ctx *Alter_tag_optsContext) {}
// ExitAlter_tag_opts is called when production alter_tag_opts is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_tag_opts(ctx *Alter_tag_optsContext) {}
// EnterAlter_network_policy_opts is called when production alter_network_policy_opts is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_network_policy_opts(ctx *Alter_network_policy_optsContext) {
}
// ExitAlter_network_policy_opts is called when production alter_network_policy_opts is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_network_policy_opts(ctx *Alter_network_policy_optsContext) {
}
// EnterAlter_warehouse_opts is called when production alter_warehouse_opts is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_warehouse_opts(ctx *Alter_warehouse_optsContext) {}
// ExitAlter_warehouse_opts is called when production alter_warehouse_opts is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_warehouse_opts(ctx *Alter_warehouse_optsContext) {}
// EnterAlter_account_opts is called when production alter_account_opts is entered.
func (s *BaseSnowflakeParserListener) EnterAlter_account_opts(ctx *Alter_account_optsContext) {}
// ExitAlter_account_opts is called when production alter_account_opts is exited.
func (s *BaseSnowflakeParserListener) ExitAlter_account_opts(ctx *Alter_account_optsContext) {}
// EnterSet_tags is called when production set_tags is entered.
func (s *BaseSnowflakeParserListener) EnterSet_tags(ctx *Set_tagsContext) {}
// ExitSet_tags is called when production set_tags is exited.
func (s *BaseSnowflakeParserListener) ExitSet_tags(ctx *Set_tagsContext) {}
// EnterTag_decl_list is called when production tag_decl_list is entered.
func (s *BaseSnowflakeParserListener) EnterTag_decl_list(ctx *Tag_decl_listContext) {}
// ExitTag_decl_list is called when production tag_decl_list is exited.
func (s *BaseSnowflakeParserListener) ExitTag_decl_list(ctx *Tag_decl_listContext) {}
// EnterUnset_tags is called when production unset_tags is entered.
func (s *BaseSnowflakeParserListener) EnterUnset_tags(ctx *Unset_tagsContext) {}
// ExitUnset_tags is called when production unset_tags is exited.
func (s *BaseSnowflakeParserListener) ExitUnset_tags(ctx *Unset_tagsContext) {}
// EnterCreate_command is called when production create_command is entered.
func (s *BaseSnowflakeParserListener) EnterCreate_command(ctx *Create_commandContext) {}
// ExitCreate_command is called when production create_command is exited.
func (s *BaseSnowflakeParserListener) ExitCreate_command(ctx *Create_commandContext) {}
// EnterCreate_account is called when production create_account is entered.
func (s *BaseSnowflakeParserListener) EnterCreate_account(ctx *Create_accountContext) {}
// ExitCreate_account is called when production create_account is exited.