-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgooglesqlparser_base_listener.go
4295 lines (3038 loc) · 234 KB
/
googlesqlparser_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 GoogleSQLParser.g4 by ANTLR 4.13.2. DO NOT EDIT.
package parser // GoogleSQLParser
import "github.com/antlr4-go/antlr/v4"
// BaseGoogleSQLParserListener is a complete listener for a parse tree produced by GoogleSQLParser.
type BaseGoogleSQLParserListener struct{}
var _ GoogleSQLParserListener = &BaseGoogleSQLParserListener{}
// VisitTerminal is called when a terminal node is visited.
func (s *BaseGoogleSQLParserListener) VisitTerminal(node antlr.TerminalNode) {}
// VisitErrorNode is called when an error node is visited.
func (s *BaseGoogleSQLParserListener) VisitErrorNode(node antlr.ErrorNode) {}
// EnterEveryRule is called when any rule is entered.
func (s *BaseGoogleSQLParserListener) EnterEveryRule(ctx antlr.ParserRuleContext) {}
// ExitEveryRule is called when any rule is exited.
func (s *BaseGoogleSQLParserListener) ExitEveryRule(ctx antlr.ParserRuleContext) {}
// EnterRoot is called when production root is entered.
func (s *BaseGoogleSQLParserListener) EnterRoot(ctx *RootContext) {}
// ExitRoot is called when production root is exited.
func (s *BaseGoogleSQLParserListener) ExitRoot(ctx *RootContext) {}
// EnterStmts is called when production stmts is entered.
func (s *BaseGoogleSQLParserListener) EnterStmts(ctx *StmtsContext) {}
// ExitStmts is called when production stmts is exited.
func (s *BaseGoogleSQLParserListener) ExitStmts(ctx *StmtsContext) {}
// EnterUnterminated_sql_statement is called when production unterminated_sql_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterUnterminated_sql_statement(ctx *Unterminated_sql_statementContext) {
}
// ExitUnterminated_sql_statement is called when production unterminated_sql_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitUnterminated_sql_statement(ctx *Unterminated_sql_statementContext) {
}
// EnterSql_statement_body is called when production sql_statement_body is entered.
func (s *BaseGoogleSQLParserListener) EnterSql_statement_body(ctx *Sql_statement_bodyContext) {}
// ExitSql_statement_body is called when production sql_statement_body is exited.
func (s *BaseGoogleSQLParserListener) ExitSql_statement_body(ctx *Sql_statement_bodyContext) {}
// EnterGql_statement is called when production gql_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterGql_statement(ctx *Gql_statementContext) {}
// ExitGql_statement is called when production gql_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitGql_statement(ctx *Gql_statementContext) {}
// EnterGraph_operation_block is called when production graph_operation_block is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_operation_block(ctx *Graph_operation_blockContext) {}
// ExitGraph_operation_block is called when production graph_operation_block is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_operation_block(ctx *Graph_operation_blockContext) {}
// EnterGraph_composite_query_block is called when production graph_composite_query_block is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_composite_query_block(ctx *Graph_composite_query_blockContext) {
}
// ExitGraph_composite_query_block is called when production graph_composite_query_block is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_composite_query_block(ctx *Graph_composite_query_blockContext) {
}
// EnterGraph_composite_query_prefix is called when production graph_composite_query_prefix is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_composite_query_prefix(ctx *Graph_composite_query_prefixContext) {
}
// ExitGraph_composite_query_prefix is called when production graph_composite_query_prefix is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_composite_query_prefix(ctx *Graph_composite_query_prefixContext) {
}
// EnterGraph_set_operation_metadata is called when production graph_set_operation_metadata is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_set_operation_metadata(ctx *Graph_set_operation_metadataContext) {
}
// ExitGraph_set_operation_metadata is called when production graph_set_operation_metadata is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_set_operation_metadata(ctx *Graph_set_operation_metadataContext) {
}
// EnterGraph_linear_query_operation is called when production graph_linear_query_operation is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_linear_query_operation(ctx *Graph_linear_query_operationContext) {
}
// ExitGraph_linear_query_operation is called when production graph_linear_query_operation is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_linear_query_operation(ctx *Graph_linear_query_operationContext) {
}
// EnterGraph_linear_operator_list is called when production graph_linear_operator_list is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_linear_operator_list(ctx *Graph_linear_operator_listContext) {
}
// ExitGraph_linear_operator_list is called when production graph_linear_operator_list is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_linear_operator_list(ctx *Graph_linear_operator_listContext) {
}
// EnterGraph_linear_operator is called when production graph_linear_operator is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_linear_operator(ctx *Graph_linear_operatorContext) {}
// ExitGraph_linear_operator is called when production graph_linear_operator is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_linear_operator(ctx *Graph_linear_operatorContext) {}
// EnterGraph_sample_clause is called when production graph_sample_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_sample_clause(ctx *Graph_sample_clauseContext) {}
// ExitGraph_sample_clause is called when production graph_sample_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_sample_clause(ctx *Graph_sample_clauseContext) {}
// EnterOpt_graph_sample_clause_suffix is called when production opt_graph_sample_clause_suffix is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_graph_sample_clause_suffix(ctx *Opt_graph_sample_clause_suffixContext) {
}
// ExitOpt_graph_sample_clause_suffix is called when production opt_graph_sample_clause_suffix is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_graph_sample_clause_suffix(ctx *Opt_graph_sample_clause_suffixContext) {
}
// EnterGraph_for_operator is called when production graph_for_operator is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_for_operator(ctx *Graph_for_operatorContext) {}
// ExitGraph_for_operator is called when production graph_for_operator is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_for_operator(ctx *Graph_for_operatorContext) {}
// EnterOpt_with_offset_and_alias_with_required_as is called when production opt_with_offset_and_alias_with_required_as is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_with_offset_and_alias_with_required_as(ctx *Opt_with_offset_and_alias_with_required_asContext) {
}
// ExitOpt_with_offset_and_alias_with_required_as is called when production opt_with_offset_and_alias_with_required_as is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_with_offset_and_alias_with_required_as(ctx *Opt_with_offset_and_alias_with_required_asContext) {
}
// EnterGraph_with_operator is called when production graph_with_operator is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_with_operator(ctx *Graph_with_operatorContext) {}
// ExitGraph_with_operator is called when production graph_with_operator is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_with_operator(ctx *Graph_with_operatorContext) {}
// EnterGraph_page_operator is called when production graph_page_operator is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_page_operator(ctx *Graph_page_operatorContext) {}
// ExitGraph_page_operator is called when production graph_page_operator is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_page_operator(ctx *Graph_page_operatorContext) {}
// EnterGraph_order_by_operator is called when production graph_order_by_operator is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_order_by_operator(ctx *Graph_order_by_operatorContext) {
}
// ExitGraph_order_by_operator is called when production graph_order_by_operator is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_order_by_operator(ctx *Graph_order_by_operatorContext) {
}
// EnterGraph_filter_operator is called when production graph_filter_operator is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_filter_operator(ctx *Graph_filter_operatorContext) {}
// ExitGraph_filter_operator is called when production graph_filter_operator is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_filter_operator(ctx *Graph_filter_operatorContext) {}
// EnterGraph_let_operator is called when production graph_let_operator is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_let_operator(ctx *Graph_let_operatorContext) {}
// ExitGraph_let_operator is called when production graph_let_operator is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_let_operator(ctx *Graph_let_operatorContext) {}
// EnterGraph_let_variable_definition_list is called when production graph_let_variable_definition_list is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_let_variable_definition_list(ctx *Graph_let_variable_definition_listContext) {
}
// ExitGraph_let_variable_definition_list is called when production graph_let_variable_definition_list is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_let_variable_definition_list(ctx *Graph_let_variable_definition_listContext) {
}
// EnterGraph_let_variable_definition is called when production graph_let_variable_definition is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_let_variable_definition(ctx *Graph_let_variable_definitionContext) {
}
// ExitGraph_let_variable_definition is called when production graph_let_variable_definition is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_let_variable_definition(ctx *Graph_let_variable_definitionContext) {
}
// EnterGraph_optional_match_operator is called when production graph_optional_match_operator is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_optional_match_operator(ctx *Graph_optional_match_operatorContext) {
}
// ExitGraph_optional_match_operator is called when production graph_optional_match_operator is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_optional_match_operator(ctx *Graph_optional_match_operatorContext) {
}
// EnterGraph_match_operator is called when production graph_match_operator is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_match_operator(ctx *Graph_match_operatorContext) {}
// ExitGraph_match_operator is called when production graph_match_operator is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_match_operator(ctx *Graph_match_operatorContext) {}
// EnterGraph_pattern is called when production graph_pattern is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_pattern(ctx *Graph_patternContext) {}
// ExitGraph_pattern is called when production graph_pattern is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_pattern(ctx *Graph_patternContext) {}
// EnterGraph_path_pattern_list is called when production graph_path_pattern_list is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_path_pattern_list(ctx *Graph_path_pattern_listContext) {
}
// ExitGraph_path_pattern_list is called when production graph_path_pattern_list is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_path_pattern_list(ctx *Graph_path_pattern_listContext) {
}
// EnterGraph_path_pattern is called when production graph_path_pattern is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_path_pattern(ctx *Graph_path_patternContext) {}
// ExitGraph_path_pattern is called when production graph_path_pattern is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_path_pattern(ctx *Graph_path_patternContext) {}
// EnterGraph_path_pattern_expr is called when production graph_path_pattern_expr is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_path_pattern_expr(ctx *Graph_path_pattern_exprContext) {
}
// ExitGraph_path_pattern_expr is called when production graph_path_pattern_expr is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_path_pattern_expr(ctx *Graph_path_pattern_exprContext) {
}
// EnterGraph_path_factor is called when production graph_path_factor is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_path_factor(ctx *Graph_path_factorContext) {}
// ExitGraph_path_factor is called when production graph_path_factor is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_path_factor(ctx *Graph_path_factorContext) {}
// EnterGraph_quantified_path_primary is called when production graph_quantified_path_primary is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_quantified_path_primary(ctx *Graph_quantified_path_primaryContext) {
}
// ExitGraph_quantified_path_primary is called when production graph_quantified_path_primary is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_quantified_path_primary(ctx *Graph_quantified_path_primaryContext) {
}
// EnterGraph_path_primary is called when production graph_path_primary is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_path_primary(ctx *Graph_path_primaryContext) {}
// ExitGraph_path_primary is called when production graph_path_primary is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_path_primary(ctx *Graph_path_primaryContext) {}
// EnterGraph_parenthesized_path_pattern is called when production graph_parenthesized_path_pattern is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_parenthesized_path_pattern(ctx *Graph_parenthesized_path_patternContext) {
}
// ExitGraph_parenthesized_path_pattern is called when production graph_parenthesized_path_pattern is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_parenthesized_path_pattern(ctx *Graph_parenthesized_path_patternContext) {
}
// EnterGraph_element_pattern is called when production graph_element_pattern is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_element_pattern(ctx *Graph_element_patternContext) {}
// ExitGraph_element_pattern is called when production graph_element_pattern is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_element_pattern(ctx *Graph_element_patternContext) {}
// EnterGraph_edge_pattern is called when production graph_edge_pattern is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_edge_pattern(ctx *Graph_edge_patternContext) {}
// ExitGraph_edge_pattern is called when production graph_edge_pattern is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_edge_pattern(ctx *Graph_edge_patternContext) {}
// EnterGraph_node_pattern is called when production graph_node_pattern is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_node_pattern(ctx *Graph_node_patternContext) {}
// ExitGraph_node_pattern is called when production graph_node_pattern is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_node_pattern(ctx *Graph_node_patternContext) {}
// EnterGraph_element_pattern_filler is called when production graph_element_pattern_filler is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_element_pattern_filler(ctx *Graph_element_pattern_fillerContext) {
}
// ExitGraph_element_pattern_filler is called when production graph_element_pattern_filler is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_element_pattern_filler(ctx *Graph_element_pattern_fillerContext) {
}
// EnterGraph_property_specification is called when production graph_property_specification is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_property_specification(ctx *Graph_property_specificationContext) {
}
// ExitGraph_property_specification is called when production graph_property_specification is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_property_specification(ctx *Graph_property_specificationContext) {
}
// EnterGraph_property_name_and_value is called when production graph_property_name_and_value is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_property_name_and_value(ctx *Graph_property_name_and_valueContext) {
}
// ExitGraph_property_name_and_value is called when production graph_property_name_and_value is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_property_name_and_value(ctx *Graph_property_name_and_valueContext) {
}
// EnterOpt_is_label_expression is called when production opt_is_label_expression is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_is_label_expression(ctx *Opt_is_label_expressionContext) {
}
// ExitOpt_is_label_expression is called when production opt_is_label_expression is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_is_label_expression(ctx *Opt_is_label_expressionContext) {
}
// EnterLabel_expression is called when production label_expression is entered.
func (s *BaseGoogleSQLParserListener) EnterLabel_expression(ctx *Label_expressionContext) {}
// ExitLabel_expression is called when production label_expression is exited.
func (s *BaseGoogleSQLParserListener) ExitLabel_expression(ctx *Label_expressionContext) {}
// EnterLabel_primary is called when production label_primary is entered.
func (s *BaseGoogleSQLParserListener) EnterLabel_primary(ctx *Label_primaryContext) {}
// ExitLabel_primary is called when production label_primary is exited.
func (s *BaseGoogleSQLParserListener) ExitLabel_primary(ctx *Label_primaryContext) {}
// EnterParenthesized_label_expression is called when production parenthesized_label_expression is entered.
func (s *BaseGoogleSQLParserListener) EnterParenthesized_label_expression(ctx *Parenthesized_label_expressionContext) {
}
// ExitParenthesized_label_expression is called when production parenthesized_label_expression is exited.
func (s *BaseGoogleSQLParserListener) ExitParenthesized_label_expression(ctx *Parenthesized_label_expressionContext) {
}
// EnterOpt_graph_element_identifier is called when production opt_graph_element_identifier is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_graph_element_identifier(ctx *Opt_graph_element_identifierContext) {
}
// ExitOpt_graph_element_identifier is called when production opt_graph_element_identifier is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_graph_element_identifier(ctx *Opt_graph_element_identifierContext) {
}
// EnterOpt_graph_path_mode_prefix is called when production opt_graph_path_mode_prefix is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_graph_path_mode_prefix(ctx *Opt_graph_path_mode_prefixContext) {
}
// ExitOpt_graph_path_mode_prefix is called when production opt_graph_path_mode_prefix is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_graph_path_mode_prefix(ctx *Opt_graph_path_mode_prefixContext) {
}
// EnterPath_or_paths is called when production path_or_paths is entered.
func (s *BaseGoogleSQLParserListener) EnterPath_or_paths(ctx *Path_or_pathsContext) {}
// ExitPath_or_paths is called when production path_or_paths is exited.
func (s *BaseGoogleSQLParserListener) ExitPath_or_paths(ctx *Path_or_pathsContext) {}
// EnterOpt_graph_path_mode is called when production opt_graph_path_mode is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_graph_path_mode(ctx *Opt_graph_path_modeContext) {}
// ExitOpt_graph_path_mode is called when production opt_graph_path_mode is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_graph_path_mode(ctx *Opt_graph_path_modeContext) {}
// EnterOpt_graph_search_prefix is called when production opt_graph_search_prefix is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_graph_search_prefix(ctx *Opt_graph_search_prefixContext) {
}
// ExitOpt_graph_search_prefix is called when production opt_graph_search_prefix is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_graph_search_prefix(ctx *Opt_graph_search_prefixContext) {
}
// EnterOpt_path_variable_assignment is called when production opt_path_variable_assignment is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_path_variable_assignment(ctx *Opt_path_variable_assignmentContext) {
}
// ExitOpt_path_variable_assignment is called when production opt_path_variable_assignment is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_path_variable_assignment(ctx *Opt_path_variable_assignmentContext) {
}
// EnterGraph_identifier is called when production graph_identifier is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_identifier(ctx *Graph_identifierContext) {}
// ExitGraph_identifier is called when production graph_identifier is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_identifier(ctx *Graph_identifierContext) {}
// EnterGraph_return_operator is called when production graph_return_operator is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_return_operator(ctx *Graph_return_operatorContext) {}
// ExitGraph_return_operator is called when production graph_return_operator is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_return_operator(ctx *Graph_return_operatorContext) {}
// EnterGraph_page_clause is called when production graph_page_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_page_clause(ctx *Graph_page_clauseContext) {}
// ExitGraph_page_clause is called when production graph_page_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_page_clause(ctx *Graph_page_clauseContext) {}
// EnterGraph_order_by_clause is called when production graph_order_by_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_order_by_clause(ctx *Graph_order_by_clauseContext) {}
// ExitGraph_order_by_clause is called when production graph_order_by_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_order_by_clause(ctx *Graph_order_by_clauseContext) {}
// EnterGraph_ordering_expression is called when production graph_ordering_expression is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_ordering_expression(ctx *Graph_ordering_expressionContext) {
}
// ExitGraph_ordering_expression is called when production graph_ordering_expression is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_ordering_expression(ctx *Graph_ordering_expressionContext) {
}
// EnterOpt_graph_asc_or_desc is called when production opt_graph_asc_or_desc is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_graph_asc_or_desc(ctx *Opt_graph_asc_or_descContext) {}
// ExitOpt_graph_asc_or_desc is called when production opt_graph_asc_or_desc is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_graph_asc_or_desc(ctx *Opt_graph_asc_or_descContext) {}
// EnterGraph_return_item_list is called when production graph_return_item_list is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_return_item_list(ctx *Graph_return_item_listContext) {
}
// ExitGraph_return_item_list is called when production graph_return_item_list is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_return_item_list(ctx *Graph_return_item_listContext) {
}
// EnterGraph_return_item is called when production graph_return_item is entered.
func (s *BaseGoogleSQLParserListener) EnterGraph_return_item(ctx *Graph_return_itemContext) {}
// ExitGraph_return_item is called when production graph_return_item is exited.
func (s *BaseGoogleSQLParserListener) ExitGraph_return_item(ctx *Graph_return_itemContext) {}
// EnterUndrop_statement is called when production undrop_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterUndrop_statement(ctx *Undrop_statementContext) {}
// ExitUndrop_statement is called when production undrop_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitUndrop_statement(ctx *Undrop_statementContext) {}
// EnterModule_statement is called when production module_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterModule_statement(ctx *Module_statementContext) {}
// ExitModule_statement is called when production module_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitModule_statement(ctx *Module_statementContext) {}
// EnterImport_statement is called when production import_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterImport_statement(ctx *Import_statementContext) {}
// ExitImport_statement is called when production import_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitImport_statement(ctx *Import_statementContext) {}
// EnterOpt_as_or_into_alias is called when production opt_as_or_into_alias is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_as_or_into_alias(ctx *Opt_as_or_into_aliasContext) {}
// ExitOpt_as_or_into_alias is called when production opt_as_or_into_alias is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_as_or_into_alias(ctx *Opt_as_or_into_aliasContext) {}
// EnterPath_expression_or_string is called when production path_expression_or_string is entered.
func (s *BaseGoogleSQLParserListener) EnterPath_expression_or_string(ctx *Path_expression_or_stringContext) {
}
// ExitPath_expression_or_string is called when production path_expression_or_string is exited.
func (s *BaseGoogleSQLParserListener) ExitPath_expression_or_string(ctx *Path_expression_or_stringContext) {
}
// EnterImport_type is called when production import_type is entered.
func (s *BaseGoogleSQLParserListener) EnterImport_type(ctx *Import_typeContext) {}
// ExitImport_type is called when production import_type is exited.
func (s *BaseGoogleSQLParserListener) ExitImport_type(ctx *Import_typeContext) {}
// EnterCall_statement is called when production call_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCall_statement(ctx *Call_statementContext) {}
// ExitCall_statement is called when production call_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCall_statement(ctx *Call_statementContext) {}
// EnterDrop_statement is called when production drop_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterDrop_statement(ctx *Drop_statementContext) {}
// ExitDrop_statement is called when production drop_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitDrop_statement(ctx *Drop_statementContext) {}
// EnterOpt_drop_mode is called when production opt_drop_mode is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_drop_mode(ctx *Opt_drop_modeContext) {}
// ExitOpt_drop_mode is called when production opt_drop_mode is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_drop_mode(ctx *Opt_drop_modeContext) {}
// EnterDrop_all_row_access_policies_statement is called when production drop_all_row_access_policies_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterDrop_all_row_access_policies_statement(ctx *Drop_all_row_access_policies_statementContext) {
}
// ExitDrop_all_row_access_policies_statement is called when production drop_all_row_access_policies_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitDrop_all_row_access_policies_statement(ctx *Drop_all_row_access_policies_statementContext) {
}
// EnterShow_statement is called when production show_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterShow_statement(ctx *Show_statementContext) {}
// ExitShow_statement is called when production show_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitShow_statement(ctx *Show_statementContext) {}
// EnterOpt_like_string_literal is called when production opt_like_string_literal is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_like_string_literal(ctx *Opt_like_string_literalContext) {
}
// ExitOpt_like_string_literal is called when production opt_like_string_literal is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_like_string_literal(ctx *Opt_like_string_literalContext) {
}
// EnterShow_target is called when production show_target is entered.
func (s *BaseGoogleSQLParserListener) EnterShow_target(ctx *Show_targetContext) {}
// ExitShow_target is called when production show_target is exited.
func (s *BaseGoogleSQLParserListener) ExitShow_target(ctx *Show_targetContext) {}
// EnterRename_statement is called when production rename_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterRename_statement(ctx *Rename_statementContext) {}
// ExitRename_statement is called when production rename_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitRename_statement(ctx *Rename_statementContext) {}
// EnterRevoke_statement is called when production revoke_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterRevoke_statement(ctx *Revoke_statementContext) {}
// ExitRevoke_statement is called when production revoke_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitRevoke_statement(ctx *Revoke_statementContext) {}
// EnterGrant_statement is called when production grant_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterGrant_statement(ctx *Grant_statementContext) {}
// ExitGrant_statement is called when production grant_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitGrant_statement(ctx *Grant_statementContext) {}
// EnterPrivileges is called when production privileges is entered.
func (s *BaseGoogleSQLParserListener) EnterPrivileges(ctx *PrivilegesContext) {}
// ExitPrivileges is called when production privileges is exited.
func (s *BaseGoogleSQLParserListener) ExitPrivileges(ctx *PrivilegesContext) {}
// EnterExport_metadata_statement is called when production export_metadata_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterExport_metadata_statement(ctx *Export_metadata_statementContext) {
}
// ExitExport_metadata_statement is called when production export_metadata_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitExport_metadata_statement(ctx *Export_metadata_statementContext) {
}
// EnterExport_model_statement is called when production export_model_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterExport_model_statement(ctx *Export_model_statementContext) {
}
// ExitExport_model_statement is called when production export_model_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitExport_model_statement(ctx *Export_model_statementContext) {
}
// EnterExport_data_statement is called when production export_data_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterExport_data_statement(ctx *Export_data_statementContext) {}
// ExitExport_data_statement is called when production export_data_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitExport_data_statement(ctx *Export_data_statementContext) {}
// EnterExport_data_no_query is called when production export_data_no_query is entered.
func (s *BaseGoogleSQLParserListener) EnterExport_data_no_query(ctx *Export_data_no_queryContext) {}
// ExitExport_data_no_query is called when production export_data_no_query is exited.
func (s *BaseGoogleSQLParserListener) ExitExport_data_no_query(ctx *Export_data_no_queryContext) {}
// EnterExplain_statement is called when production explain_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterExplain_statement(ctx *Explain_statementContext) {}
// ExitExplain_statement is called when production explain_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitExplain_statement(ctx *Explain_statementContext) {}
// EnterExecute_immediate is called when production execute_immediate is entered.
func (s *BaseGoogleSQLParserListener) EnterExecute_immediate(ctx *Execute_immediateContext) {}
// ExitExecute_immediate is called when production execute_immediate is exited.
func (s *BaseGoogleSQLParserListener) ExitExecute_immediate(ctx *Execute_immediateContext) {}
// EnterOpt_execute_into_clause is called when production opt_execute_into_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_execute_into_clause(ctx *Opt_execute_into_clauseContext) {
}
// ExitOpt_execute_into_clause is called when production opt_execute_into_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_execute_into_clause(ctx *Opt_execute_into_clauseContext) {
}
// EnterOpt_execute_using_clause is called when production opt_execute_using_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_execute_using_clause(ctx *Opt_execute_using_clauseContext) {
}
// ExitOpt_execute_using_clause is called when production opt_execute_using_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_execute_using_clause(ctx *Opt_execute_using_clauseContext) {
}
// EnterExecute_using_argument_list is called when production execute_using_argument_list is entered.
func (s *BaseGoogleSQLParserListener) EnterExecute_using_argument_list(ctx *Execute_using_argument_listContext) {
}
// ExitExecute_using_argument_list is called when production execute_using_argument_list is exited.
func (s *BaseGoogleSQLParserListener) ExitExecute_using_argument_list(ctx *Execute_using_argument_listContext) {
}
// EnterExecute_using_argument is called when production execute_using_argument is entered.
func (s *BaseGoogleSQLParserListener) EnterExecute_using_argument(ctx *Execute_using_argumentContext) {
}
// ExitExecute_using_argument is called when production execute_using_argument is exited.
func (s *BaseGoogleSQLParserListener) ExitExecute_using_argument(ctx *Execute_using_argumentContext) {
}
// EnterDescribe_statement is called when production describe_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterDescribe_statement(ctx *Describe_statementContext) {}
// ExitDescribe_statement is called when production describe_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitDescribe_statement(ctx *Describe_statementContext) {}
// EnterDescribe_info is called when production describe_info is entered.
func (s *BaseGoogleSQLParserListener) EnterDescribe_info(ctx *Describe_infoContext) {}
// ExitDescribe_info is called when production describe_info is exited.
func (s *BaseGoogleSQLParserListener) ExitDescribe_info(ctx *Describe_infoContext) {}
// EnterOpt_from_path_expression is called when production opt_from_path_expression is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_from_path_expression(ctx *Opt_from_path_expressionContext) {
}
// ExitOpt_from_path_expression is called when production opt_from_path_expression is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_from_path_expression(ctx *Opt_from_path_expressionContext) {
}
// EnterDescribe_keyword is called when production describe_keyword is entered.
func (s *BaseGoogleSQLParserListener) EnterDescribe_keyword(ctx *Describe_keywordContext) {}
// ExitDescribe_keyword is called when production describe_keyword is exited.
func (s *BaseGoogleSQLParserListener) ExitDescribe_keyword(ctx *Describe_keywordContext) {}
// EnterDefine_table_statement is called when production define_table_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterDefine_table_statement(ctx *Define_table_statementContext) {
}
// ExitDefine_table_statement is called when production define_table_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitDefine_table_statement(ctx *Define_table_statementContext) {
}
// EnterCreate_entity_statement is called when production create_entity_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_entity_statement(ctx *Create_entity_statementContext) {
}
// ExitCreate_entity_statement is called when production create_entity_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_entity_statement(ctx *Create_entity_statementContext) {
}
// EnterOpt_generic_entity_body is called when production opt_generic_entity_body is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_generic_entity_body(ctx *Opt_generic_entity_bodyContext) {
}
// ExitOpt_generic_entity_body is called when production opt_generic_entity_body is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_generic_entity_body(ctx *Opt_generic_entity_bodyContext) {
}
// EnterCreate_view_statement is called when production create_view_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_view_statement(ctx *Create_view_statementContext) {}
// ExitCreate_view_statement is called when production create_view_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_view_statement(ctx *Create_view_statementContext) {}
// EnterQuery_or_replica_source is called when production query_or_replica_source is entered.
func (s *BaseGoogleSQLParserListener) EnterQuery_or_replica_source(ctx *Query_or_replica_sourceContext) {
}
// ExitQuery_or_replica_source is called when production query_or_replica_source is exited.
func (s *BaseGoogleSQLParserListener) ExitQuery_or_replica_source(ctx *Query_or_replica_sourceContext) {
}
// EnterColumn_with_options_list is called when production column_with_options_list is entered.
func (s *BaseGoogleSQLParserListener) EnterColumn_with_options_list(ctx *Column_with_options_listContext) {
}
// ExitColumn_with_options_list is called when production column_with_options_list is exited.
func (s *BaseGoogleSQLParserListener) ExitColumn_with_options_list(ctx *Column_with_options_listContext) {
}
// EnterColumn_with_options is called when production column_with_options is entered.
func (s *BaseGoogleSQLParserListener) EnterColumn_with_options(ctx *Column_with_optionsContext) {}
// ExitColumn_with_options is called when production column_with_options is exited.
func (s *BaseGoogleSQLParserListener) ExitColumn_with_options(ctx *Column_with_optionsContext) {}
// EnterCreate_table_statement is called when production create_table_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_table_statement(ctx *Create_table_statementContext) {
}
// ExitCreate_table_statement is called when production create_table_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_table_statement(ctx *Create_table_statementContext) {
}
// EnterOpt_ttl_clause is called when production opt_ttl_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_ttl_clause(ctx *Opt_ttl_clauseContext) {}
// ExitOpt_ttl_clause is called when production opt_ttl_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_ttl_clause(ctx *Opt_ttl_clauseContext) {}
// EnterOpt_copy_table is called when production opt_copy_table is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_copy_table(ctx *Opt_copy_tableContext) {}
// ExitOpt_copy_table is called when production opt_copy_table is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_copy_table(ctx *Opt_copy_tableContext) {}
// EnterCopy_data_source is called when production copy_data_source is entered.
func (s *BaseGoogleSQLParserListener) EnterCopy_data_source(ctx *Copy_data_sourceContext) {}
// ExitCopy_data_source is called when production copy_data_source is exited.
func (s *BaseGoogleSQLParserListener) ExitCopy_data_source(ctx *Copy_data_sourceContext) {}
// EnterOpt_clone_table is called when production opt_clone_table is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_clone_table(ctx *Opt_clone_tableContext) {}
// ExitOpt_clone_table is called when production opt_clone_table is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_clone_table(ctx *Opt_clone_tableContext) {}
// EnterOpt_spanner_table_options is called when production opt_spanner_table_options is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_spanner_table_options(ctx *Opt_spanner_table_optionsContext) {
}
// ExitOpt_spanner_table_options is called when production opt_spanner_table_options is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_spanner_table_options(ctx *Opt_spanner_table_optionsContext) {
}
// EnterOpt_spanner_interleave_in_parent_clause is called when production opt_spanner_interleave_in_parent_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_spanner_interleave_in_parent_clause(ctx *Opt_spanner_interleave_in_parent_clauseContext) {
}
// ExitOpt_spanner_interleave_in_parent_clause is called when production opt_spanner_interleave_in_parent_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_spanner_interleave_in_parent_clause(ctx *Opt_spanner_interleave_in_parent_clauseContext) {
}
// EnterSpanner_primary_key is called when production spanner_primary_key is entered.
func (s *BaseGoogleSQLParserListener) EnterSpanner_primary_key(ctx *Spanner_primary_keyContext) {}
// ExitSpanner_primary_key is called when production spanner_primary_key is exited.
func (s *BaseGoogleSQLParserListener) ExitSpanner_primary_key(ctx *Spanner_primary_keyContext) {}
// EnterCreate_table_function_statement is called when production create_table_function_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_table_function_statement(ctx *Create_table_function_statementContext) {
}
// ExitCreate_table_function_statement is called when production create_table_function_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_table_function_statement(ctx *Create_table_function_statementContext) {
}
// EnterOpt_as_query_or_string is called when production opt_as_query_or_string is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_as_query_or_string(ctx *Opt_as_query_or_stringContext) {
}
// ExitOpt_as_query_or_string is called when production opt_as_query_or_string is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_as_query_or_string(ctx *Opt_as_query_or_stringContext) {
}
// EnterUnordered_language_options is called when production unordered_language_options is entered.
func (s *BaseGoogleSQLParserListener) EnterUnordered_language_options(ctx *Unordered_language_optionsContext) {
}
// ExitUnordered_language_options is called when production unordered_language_options is exited.
func (s *BaseGoogleSQLParserListener) ExitUnordered_language_options(ctx *Unordered_language_optionsContext) {
}
// EnterOpt_function_parameters is called when production opt_function_parameters is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_function_parameters(ctx *Opt_function_parametersContext) {
}
// ExitOpt_function_parameters is called when production opt_function_parameters is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_function_parameters(ctx *Opt_function_parametersContext) {
}
// EnterCreate_snapshot_statement is called when production create_snapshot_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_snapshot_statement(ctx *Create_snapshot_statementContext) {
}
// ExitCreate_snapshot_statement is called when production create_snapshot_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_snapshot_statement(ctx *Create_snapshot_statementContext) {
}
// EnterCreate_external_schema_statement is called when production create_external_schema_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_external_schema_statement(ctx *Create_external_schema_statementContext) {
}
// ExitCreate_external_schema_statement is called when production create_external_schema_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_external_schema_statement(ctx *Create_external_schema_statementContext) {
}
// EnterCreate_schema_statement is called when production create_schema_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_schema_statement(ctx *Create_schema_statementContext) {
}
// ExitCreate_schema_statement is called when production create_schema_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_schema_statement(ctx *Create_schema_statementContext) {
}
// EnterCreate_property_graph_statement is called when production create_property_graph_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_property_graph_statement(ctx *Create_property_graph_statementContext) {
}
// ExitCreate_property_graph_statement is called when production create_property_graph_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_property_graph_statement(ctx *Create_property_graph_statementContext) {
}
// EnterOpt_edge_table_clause is called when production opt_edge_table_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_edge_table_clause(ctx *Opt_edge_table_clauseContext) {}
// ExitOpt_edge_table_clause is called when production opt_edge_table_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_edge_table_clause(ctx *Opt_edge_table_clauseContext) {}
// EnterElement_table_list is called when production element_table_list is entered.
func (s *BaseGoogleSQLParserListener) EnterElement_table_list(ctx *Element_table_listContext) {}
// ExitElement_table_list is called when production element_table_list is exited.
func (s *BaseGoogleSQLParserListener) ExitElement_table_list(ctx *Element_table_listContext) {}
// EnterElement_table_definition is called when production element_table_definition is entered.
func (s *BaseGoogleSQLParserListener) EnterElement_table_definition(ctx *Element_table_definitionContext) {
}
// ExitElement_table_definition is called when production element_table_definition is exited.
func (s *BaseGoogleSQLParserListener) ExitElement_table_definition(ctx *Element_table_definitionContext) {
}
// EnterOpt_label_and_properties_clause is called when production opt_label_and_properties_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_label_and_properties_clause(ctx *Opt_label_and_properties_clauseContext) {
}
// ExitOpt_label_and_properties_clause is called when production opt_label_and_properties_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_label_and_properties_clause(ctx *Opt_label_and_properties_clauseContext) {
}
// EnterLabel_and_properties_list is called when production label_and_properties_list is entered.
func (s *BaseGoogleSQLParserListener) EnterLabel_and_properties_list(ctx *Label_and_properties_listContext) {
}
// ExitLabel_and_properties_list is called when production label_and_properties_list is exited.
func (s *BaseGoogleSQLParserListener) ExitLabel_and_properties_list(ctx *Label_and_properties_listContext) {
}
// EnterLabel_and_properties is called when production label_and_properties is entered.
func (s *BaseGoogleSQLParserListener) EnterLabel_and_properties(ctx *Label_and_propertiesContext) {}
// ExitLabel_and_properties is called when production label_and_properties is exited.
func (s *BaseGoogleSQLParserListener) ExitLabel_and_properties(ctx *Label_and_propertiesContext) {}
// EnterProperties_clause is called when production properties_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterProperties_clause(ctx *Properties_clauseContext) {}
// ExitProperties_clause is called when production properties_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitProperties_clause(ctx *Properties_clauseContext) {}
// EnterDerived_property_list is called when production derived_property_list is entered.
func (s *BaseGoogleSQLParserListener) EnterDerived_property_list(ctx *Derived_property_listContext) {}
// ExitDerived_property_list is called when production derived_property_list is exited.
func (s *BaseGoogleSQLParserListener) ExitDerived_property_list(ctx *Derived_property_listContext) {}
// EnterDerived_property is called when production derived_property is entered.
func (s *BaseGoogleSQLParserListener) EnterDerived_property(ctx *Derived_propertyContext) {}
// ExitDerived_property is called when production derived_property is exited.
func (s *BaseGoogleSQLParserListener) ExitDerived_property(ctx *Derived_propertyContext) {}
// EnterOpt_except_column_list is called when production opt_except_column_list is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_except_column_list(ctx *Opt_except_column_listContext) {
}
// ExitOpt_except_column_list is called when production opt_except_column_list is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_except_column_list(ctx *Opt_except_column_listContext) {
}
// EnterProperties_all_columns is called when production properties_all_columns is entered.
func (s *BaseGoogleSQLParserListener) EnterProperties_all_columns(ctx *Properties_all_columnsContext) {
}
// ExitProperties_all_columns is called when production properties_all_columns is exited.
func (s *BaseGoogleSQLParserListener) ExitProperties_all_columns(ctx *Properties_all_columnsContext) {
}
// EnterOpt_dest_node_table_clause is called when production opt_dest_node_table_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_dest_node_table_clause(ctx *Opt_dest_node_table_clauseContext) {
}
// ExitOpt_dest_node_table_clause is called when production opt_dest_node_table_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_dest_node_table_clause(ctx *Opt_dest_node_table_clauseContext) {
}
// EnterOpt_source_node_table_clause is called when production opt_source_node_table_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_source_node_table_clause(ctx *Opt_source_node_table_clauseContext) {
}
// ExitOpt_source_node_table_clause is called when production opt_source_node_table_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_source_node_table_clause(ctx *Opt_source_node_table_clauseContext) {
}
// EnterOpt_key_clause is called when production opt_key_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_key_clause(ctx *Opt_key_clauseContext) {}
// ExitOpt_key_clause is called when production opt_key_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_key_clause(ctx *Opt_key_clauseContext) {}
// EnterCreate_model_statement is called when production create_model_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_model_statement(ctx *Create_model_statementContext) {
}
// ExitCreate_model_statement is called when production create_model_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_model_statement(ctx *Create_model_statementContext) {
}
// EnterOpt_input_output_clause is called when production opt_input_output_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_input_output_clause(ctx *Opt_input_output_clauseContext) {
}
// ExitOpt_input_output_clause is called when production opt_input_output_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_input_output_clause(ctx *Opt_input_output_clauseContext) {
}
// EnterOpt_transform_clause is called when production opt_transform_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_transform_clause(ctx *Opt_transform_clauseContext) {}
// ExitOpt_transform_clause is called when production opt_transform_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_transform_clause(ctx *Opt_transform_clauseContext) {}
// EnterOpt_as_query_or_aliased_query_list is called when production opt_as_query_or_aliased_query_list is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_as_query_or_aliased_query_list(ctx *Opt_as_query_or_aliased_query_listContext) {
}
// ExitOpt_as_query_or_aliased_query_list is called when production opt_as_query_or_aliased_query_list is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_as_query_or_aliased_query_list(ctx *Opt_as_query_or_aliased_query_listContext) {
}
// EnterAliased_query_list is called when production aliased_query_list is entered.
func (s *BaseGoogleSQLParserListener) EnterAliased_query_list(ctx *Aliased_query_listContext) {}
// ExitAliased_query_list is called when production aliased_query_list is exited.
func (s *BaseGoogleSQLParserListener) ExitAliased_query_list(ctx *Aliased_query_listContext) {}
// EnterAs_query is called when production as_query is entered.
func (s *BaseGoogleSQLParserListener) EnterAs_query(ctx *As_queryContext) {}
// ExitAs_query is called when production as_query is exited.
func (s *BaseGoogleSQLParserListener) ExitAs_query(ctx *As_queryContext) {}
// EnterCreate_external_table_function_statement is called when production create_external_table_function_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_external_table_function_statement(ctx *Create_external_table_function_statementContext) {
}
// ExitCreate_external_table_function_statement is called when production create_external_table_function_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_external_table_function_statement(ctx *Create_external_table_function_statementContext) {
}
// EnterCreate_external_table_statement is called when production create_external_table_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_external_table_statement(ctx *Create_external_table_statementContext) {
}
// ExitCreate_external_table_statement is called when production create_external_table_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_external_table_statement(ctx *Create_external_table_statementContext) {
}
// EnterOpt_default_collate_clause is called when production opt_default_collate_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_default_collate_clause(ctx *Opt_default_collate_clauseContext) {
}
// ExitOpt_default_collate_clause is called when production opt_default_collate_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_default_collate_clause(ctx *Opt_default_collate_clauseContext) {
}
// EnterOpt_like_path_expression is called when production opt_like_path_expression is entered.
func (s *BaseGoogleSQLParserListener) EnterOpt_like_path_expression(ctx *Opt_like_path_expressionContext) {
}
// ExitOpt_like_path_expression is called when production opt_like_path_expression is exited.
func (s *BaseGoogleSQLParserListener) ExitOpt_like_path_expression(ctx *Opt_like_path_expressionContext) {
}
// EnterCreate_row_access_policy_statement is called when production create_row_access_policy_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_row_access_policy_statement(ctx *Create_row_access_policy_statementContext) {
}
// ExitCreate_row_access_policy_statement is called when production create_row_access_policy_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_row_access_policy_statement(ctx *Create_row_access_policy_statementContext) {
}
// EnterFilter_using_clause is called when production filter_using_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterFilter_using_clause(ctx *Filter_using_clauseContext) {}
// ExitFilter_using_clause is called when production filter_using_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitFilter_using_clause(ctx *Filter_using_clauseContext) {}
// EnterCreate_row_access_policy_grant_to_clause is called when production create_row_access_policy_grant_to_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_row_access_policy_grant_to_clause(ctx *Create_row_access_policy_grant_to_clauseContext) {
}
// ExitCreate_row_access_policy_grant_to_clause is called when production create_row_access_policy_grant_to_clause is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_row_access_policy_grant_to_clause(ctx *Create_row_access_policy_grant_to_clauseContext) {
}
// EnterCreate_privilege_restriction_statement is called when production create_privilege_restriction_statement is entered.
func (s *BaseGoogleSQLParserListener) EnterCreate_privilege_restriction_statement(ctx *Create_privilege_restriction_statementContext) {
}
// ExitCreate_privilege_restriction_statement is called when production create_privilege_restriction_statement is exited.
func (s *BaseGoogleSQLParserListener) ExitCreate_privilege_restriction_statement(ctx *Create_privilege_restriction_statementContext) {
}
// EnterRestrict_to_clause is called when production restrict_to_clause is entered.
func (s *BaseGoogleSQLParserListener) EnterRestrict_to_clause(ctx *Restrict_to_clauseContext) {}
// ExitRestrict_to_clause is called when production restrict_to_clause is exited.