@plurnk/plurnk-mimetypes-text-postgresql 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +15 -0
  3. package/dist/TextPostgresql.d.ts +7 -0
  4. package/dist/TextPostgresql.d.ts.map +1 -0
  5. package/dist/TextPostgresql.js +198 -0
  6. package/dist/TextPostgresql.js.map +1 -0
  7. package/dist/generated/PostgreSQLLexer.d.ts +640 -0
  8. package/dist/generated/PostgreSQLLexer.d.ts.map +1 -0
  9. package/dist/generated/PostgreSQLLexer.js +3359 -0
  10. package/dist/generated/PostgreSQLLexer.js.map +1 -0
  11. package/dist/generated/PostgreSQLLexerBase.d.ts +33 -0
  12. package/dist/generated/PostgreSQLLexerBase.d.ts.map +1 -0
  13. package/dist/generated/PostgreSQLLexerBase.js +92 -0
  14. package/dist/generated/PostgreSQLLexerBase.js.map +1 -0
  15. package/dist/generated/PostgreSQLParser.d.ts +10568 -0
  16. package/dist/generated/PostgreSQLParser.d.ts.map +1 -0
  17. package/dist/generated/PostgreSQLParser.js +93755 -0
  18. package/dist/generated/PostgreSQLParser.js.map +1 -0
  19. package/dist/generated/PostgreSQLParserBase.d.ts +9 -0
  20. package/dist/generated/PostgreSQLParserBase.d.ts.map +1 -0
  21. package/dist/generated/PostgreSQLParserBase.js +106 -0
  22. package/dist/generated/PostgreSQLParserBase.js.map +1 -0
  23. package/dist/generated/PostgreSQLParserVisitor.d.ts +5086 -0
  24. package/dist/generated/PostgreSQLParserVisitor.d.ts.map +1 -0
  25. package/dist/generated/PostgreSQLParserVisitor.js +4362 -0
  26. package/dist/generated/PostgreSQLParserVisitor.js.map +1 -0
  27. package/dist/index.d.ts +3 -0
  28. package/dist/index.d.ts.map +1 -0
  29. package/dist/index.js +3 -0
  30. package/dist/index.js.map +1 -0
  31. package/grammar/PostgreSQLLexer.g4 +1476 -0
  32. package/grammar/PostgreSQLParser.g4 +5469 -0
  33. package/package.json +64 -0
@@ -0,0 +1,4362 @@
1
+ import { AbstractParseTreeVisitor } from "antlr4ng";
2
+ /**
3
+ * This interface defines a complete generic visitor for a parse tree produced
4
+ * by `PostgreSQLParser`.
5
+ *
6
+ * @param <Result> The return type of the visit operation. Use `void` for
7
+ * operations with no return type.
8
+ */
9
+ export class PostgreSQLParserVisitor extends AbstractParseTreeVisitor {
10
+ /**
11
+ * Visit a parse tree produced by `PostgreSQLParser.root`.
12
+ * @param ctx the parse tree
13
+ * @return the visitor result
14
+ */
15
+ visitRoot;
16
+ /**
17
+ * Visit a parse tree produced by `PostgreSQLParser.stmtblock`.
18
+ * @param ctx the parse tree
19
+ * @return the visitor result
20
+ */
21
+ visitStmtblock;
22
+ /**
23
+ * Visit a parse tree produced by `PostgreSQLParser.stmtmulti`.
24
+ * @param ctx the parse tree
25
+ * @return the visitor result
26
+ */
27
+ visitStmtmulti;
28
+ /**
29
+ * Visit a parse tree produced by `PostgreSQLParser.stmt`.
30
+ * @param ctx the parse tree
31
+ * @return the visitor result
32
+ */
33
+ visitStmt;
34
+ /**
35
+ * Visit a parse tree produced by `PostgreSQLParser.callstmt`.
36
+ * @param ctx the parse tree
37
+ * @return the visitor result
38
+ */
39
+ visitCallstmt;
40
+ /**
41
+ * Visit a parse tree produced by `PostgreSQLParser.createrolestmt`.
42
+ * @param ctx the parse tree
43
+ * @return the visitor result
44
+ */
45
+ visitCreaterolestmt;
46
+ /**
47
+ * Visit a parse tree produced by `PostgreSQLParser.with_`.
48
+ * @param ctx the parse tree
49
+ * @return the visitor result
50
+ */
51
+ visitWith_;
52
+ /**
53
+ * Visit a parse tree produced by `PostgreSQLParser.optrolelist`.
54
+ * @param ctx the parse tree
55
+ * @return the visitor result
56
+ */
57
+ visitOptrolelist;
58
+ /**
59
+ * Visit a parse tree produced by `PostgreSQLParser.alteroptrolelist`.
60
+ * @param ctx the parse tree
61
+ * @return the visitor result
62
+ */
63
+ visitAlteroptrolelist;
64
+ /**
65
+ * Visit a parse tree produced by `PostgreSQLParser.alteroptroleelem`.
66
+ * @param ctx the parse tree
67
+ * @return the visitor result
68
+ */
69
+ visitAlteroptroleelem;
70
+ /**
71
+ * Visit a parse tree produced by `PostgreSQLParser.createoptroleelem`.
72
+ * @param ctx the parse tree
73
+ * @return the visitor result
74
+ */
75
+ visitCreateoptroleelem;
76
+ /**
77
+ * Visit a parse tree produced by `PostgreSQLParser.createuserstmt`.
78
+ * @param ctx the parse tree
79
+ * @return the visitor result
80
+ */
81
+ visitCreateuserstmt;
82
+ /**
83
+ * Visit a parse tree produced by `PostgreSQLParser.alterrolestmt`.
84
+ * @param ctx the parse tree
85
+ * @return the visitor result
86
+ */
87
+ visitAlterrolestmt;
88
+ /**
89
+ * Visit a parse tree produced by `PostgreSQLParser.in_database_`.
90
+ * @param ctx the parse tree
91
+ * @return the visitor result
92
+ */
93
+ visitIn_database_;
94
+ /**
95
+ * Visit a parse tree produced by `PostgreSQLParser.alterrolesetstmt`.
96
+ * @param ctx the parse tree
97
+ * @return the visitor result
98
+ */
99
+ visitAlterrolesetstmt;
100
+ /**
101
+ * Visit a parse tree produced by `PostgreSQLParser.droprolestmt`.
102
+ * @param ctx the parse tree
103
+ * @return the visitor result
104
+ */
105
+ visitDroprolestmt;
106
+ /**
107
+ * Visit a parse tree produced by `PostgreSQLParser.creategroupstmt`.
108
+ * @param ctx the parse tree
109
+ * @return the visitor result
110
+ */
111
+ visitCreategroupstmt;
112
+ /**
113
+ * Visit a parse tree produced by `PostgreSQLParser.altergroupstmt`.
114
+ * @param ctx the parse tree
115
+ * @return the visitor result
116
+ */
117
+ visitAltergroupstmt;
118
+ /**
119
+ * Visit a parse tree produced by `PostgreSQLParser.add_drop`.
120
+ * @param ctx the parse tree
121
+ * @return the visitor result
122
+ */
123
+ visitAdd_drop;
124
+ /**
125
+ * Visit a parse tree produced by `PostgreSQLParser.createschemastmt`.
126
+ * @param ctx the parse tree
127
+ * @return the visitor result
128
+ */
129
+ visitCreateschemastmt;
130
+ /**
131
+ * Visit a parse tree produced by `PostgreSQLParser.optschemaname`.
132
+ * @param ctx the parse tree
133
+ * @return the visitor result
134
+ */
135
+ visitOptschemaname;
136
+ /**
137
+ * Visit a parse tree produced by `PostgreSQLParser.optschemaeltlist`.
138
+ * @param ctx the parse tree
139
+ * @return the visitor result
140
+ */
141
+ visitOptschemaeltlist;
142
+ /**
143
+ * Visit a parse tree produced by `PostgreSQLParser.schema_stmt`.
144
+ * @param ctx the parse tree
145
+ * @return the visitor result
146
+ */
147
+ visitSchema_stmt;
148
+ /**
149
+ * Visit a parse tree produced by `PostgreSQLParser.variablesetstmt`.
150
+ * @param ctx the parse tree
151
+ * @return the visitor result
152
+ */
153
+ visitVariablesetstmt;
154
+ /**
155
+ * Visit a parse tree produced by `PostgreSQLParser.set_rest`.
156
+ * @param ctx the parse tree
157
+ * @return the visitor result
158
+ */
159
+ visitSet_rest;
160
+ /**
161
+ * Visit a parse tree produced by `PostgreSQLParser.generic_set`.
162
+ * @param ctx the parse tree
163
+ * @return the visitor result
164
+ */
165
+ visitGeneric_set;
166
+ /**
167
+ * Visit a parse tree produced by `PostgreSQLParser.set_rest_more`.
168
+ * @param ctx the parse tree
169
+ * @return the visitor result
170
+ */
171
+ visitSet_rest_more;
172
+ /**
173
+ * Visit a parse tree produced by `PostgreSQLParser.var_name`.
174
+ * @param ctx the parse tree
175
+ * @return the visitor result
176
+ */
177
+ visitVar_name;
178
+ /**
179
+ * Visit a parse tree produced by `PostgreSQLParser.var_list`.
180
+ * @param ctx the parse tree
181
+ * @return the visitor result
182
+ */
183
+ visitVar_list;
184
+ /**
185
+ * Visit a parse tree produced by `PostgreSQLParser.var_value`.
186
+ * @param ctx the parse tree
187
+ * @return the visitor result
188
+ */
189
+ visitVar_value;
190
+ /**
191
+ * Visit a parse tree produced by `PostgreSQLParser.iso_level`.
192
+ * @param ctx the parse tree
193
+ * @return the visitor result
194
+ */
195
+ visitIso_level;
196
+ /**
197
+ * Visit a parse tree produced by `PostgreSQLParser.boolean_or_string_`.
198
+ * @param ctx the parse tree
199
+ * @return the visitor result
200
+ */
201
+ visitBoolean_or_string_;
202
+ /**
203
+ * Visit a parse tree produced by `PostgreSQLParser.zone_value`.
204
+ * @param ctx the parse tree
205
+ * @return the visitor result
206
+ */
207
+ visitZone_value;
208
+ /**
209
+ * Visit a parse tree produced by `PostgreSQLParser.encoding_`.
210
+ * @param ctx the parse tree
211
+ * @return the visitor result
212
+ */
213
+ visitEncoding_;
214
+ /**
215
+ * Visit a parse tree produced by `PostgreSQLParser.nonreservedword_or_sconst`.
216
+ * @param ctx the parse tree
217
+ * @return the visitor result
218
+ */
219
+ visitNonreservedword_or_sconst;
220
+ /**
221
+ * Visit a parse tree produced by `PostgreSQLParser.variableresetstmt`.
222
+ * @param ctx the parse tree
223
+ * @return the visitor result
224
+ */
225
+ visitVariableresetstmt;
226
+ /**
227
+ * Visit a parse tree produced by `PostgreSQLParser.reset_rest`.
228
+ * @param ctx the parse tree
229
+ * @return the visitor result
230
+ */
231
+ visitReset_rest;
232
+ /**
233
+ * Visit a parse tree produced by `PostgreSQLParser.generic_reset`.
234
+ * @param ctx the parse tree
235
+ * @return the visitor result
236
+ */
237
+ visitGeneric_reset;
238
+ /**
239
+ * Visit a parse tree produced by `PostgreSQLParser.setresetclause`.
240
+ * @param ctx the parse tree
241
+ * @return the visitor result
242
+ */
243
+ visitSetresetclause;
244
+ /**
245
+ * Visit a parse tree produced by `PostgreSQLParser.functionsetresetclause`.
246
+ * @param ctx the parse tree
247
+ * @return the visitor result
248
+ */
249
+ visitFunctionsetresetclause;
250
+ /**
251
+ * Visit a parse tree produced by `PostgreSQLParser.variableshowstmt`.
252
+ * @param ctx the parse tree
253
+ * @return the visitor result
254
+ */
255
+ visitVariableshowstmt;
256
+ /**
257
+ * Visit a parse tree produced by `PostgreSQLParser.constraintssetstmt`.
258
+ * @param ctx the parse tree
259
+ * @return the visitor result
260
+ */
261
+ visitConstraintssetstmt;
262
+ /**
263
+ * Visit a parse tree produced by `PostgreSQLParser.constraints_set_list`.
264
+ * @param ctx the parse tree
265
+ * @return the visitor result
266
+ */
267
+ visitConstraints_set_list;
268
+ /**
269
+ * Visit a parse tree produced by `PostgreSQLParser.constraints_set_mode`.
270
+ * @param ctx the parse tree
271
+ * @return the visitor result
272
+ */
273
+ visitConstraints_set_mode;
274
+ /**
275
+ * Visit a parse tree produced by `PostgreSQLParser.checkpointstmt`.
276
+ * @param ctx the parse tree
277
+ * @return the visitor result
278
+ */
279
+ visitCheckpointstmt;
280
+ /**
281
+ * Visit a parse tree produced by `PostgreSQLParser.discardstmt`.
282
+ * @param ctx the parse tree
283
+ * @return the visitor result
284
+ */
285
+ visitDiscardstmt;
286
+ /**
287
+ * Visit a parse tree produced by `PostgreSQLParser.altertablestmt`.
288
+ * @param ctx the parse tree
289
+ * @return the visitor result
290
+ */
291
+ visitAltertablestmt;
292
+ /**
293
+ * Visit a parse tree produced by `PostgreSQLParser.alter_table_cmds`.
294
+ * @param ctx the parse tree
295
+ * @return the visitor result
296
+ */
297
+ visitAlter_table_cmds;
298
+ /**
299
+ * Visit a parse tree produced by `PostgreSQLParser.partition_cmd`.
300
+ * @param ctx the parse tree
301
+ * @return the visitor result
302
+ */
303
+ visitPartition_cmd;
304
+ /**
305
+ * Visit a parse tree produced by `PostgreSQLParser.index_partition_cmd`.
306
+ * @param ctx the parse tree
307
+ * @return the visitor result
308
+ */
309
+ visitIndex_partition_cmd;
310
+ /**
311
+ * Visit a parse tree produced by `PostgreSQLParser.alter_table_cmd`.
312
+ * @param ctx the parse tree
313
+ * @return the visitor result
314
+ */
315
+ visitAlter_table_cmd;
316
+ /**
317
+ * Visit a parse tree produced by `PostgreSQLParser.alter_column_default`.
318
+ * @param ctx the parse tree
319
+ * @return the visitor result
320
+ */
321
+ visitAlter_column_default;
322
+ /**
323
+ * Visit a parse tree produced by `PostgreSQLParser.drop_behavior_`.
324
+ * @param ctx the parse tree
325
+ * @return the visitor result
326
+ */
327
+ visitDrop_behavior_;
328
+ /**
329
+ * Visit a parse tree produced by `PostgreSQLParser.collate_clause_`.
330
+ * @param ctx the parse tree
331
+ * @return the visitor result
332
+ */
333
+ visitCollate_clause_;
334
+ /**
335
+ * Visit a parse tree produced by `PostgreSQLParser.alter_using`.
336
+ * @param ctx the parse tree
337
+ * @return the visitor result
338
+ */
339
+ visitAlter_using;
340
+ /**
341
+ * Visit a parse tree produced by `PostgreSQLParser.replica_identity`.
342
+ * @param ctx the parse tree
343
+ * @return the visitor result
344
+ */
345
+ visitReplica_identity;
346
+ /**
347
+ * Visit a parse tree produced by `PostgreSQLParser.reloptions`.
348
+ * @param ctx the parse tree
349
+ * @return the visitor result
350
+ */
351
+ visitReloptions;
352
+ /**
353
+ * Visit a parse tree produced by `PostgreSQLParser.reloptions_`.
354
+ * @param ctx the parse tree
355
+ * @return the visitor result
356
+ */
357
+ visitReloptions_;
358
+ /**
359
+ * Visit a parse tree produced by `PostgreSQLParser.reloption_list`.
360
+ * @param ctx the parse tree
361
+ * @return the visitor result
362
+ */
363
+ visitReloption_list;
364
+ /**
365
+ * Visit a parse tree produced by `PostgreSQLParser.reloption_elem`.
366
+ * @param ctx the parse tree
367
+ * @return the visitor result
368
+ */
369
+ visitReloption_elem;
370
+ /**
371
+ * Visit a parse tree produced by `PostgreSQLParser.alter_identity_column_option_list`.
372
+ * @param ctx the parse tree
373
+ * @return the visitor result
374
+ */
375
+ visitAlter_identity_column_option_list;
376
+ /**
377
+ * Visit a parse tree produced by `PostgreSQLParser.alter_identity_column_option`.
378
+ * @param ctx the parse tree
379
+ * @return the visitor result
380
+ */
381
+ visitAlter_identity_column_option;
382
+ /**
383
+ * Visit a parse tree produced by `PostgreSQLParser.partitionboundspec`.
384
+ * @param ctx the parse tree
385
+ * @return the visitor result
386
+ */
387
+ visitPartitionboundspec;
388
+ /**
389
+ * Visit a parse tree produced by `PostgreSQLParser.hash_partbound_elem`.
390
+ * @param ctx the parse tree
391
+ * @return the visitor result
392
+ */
393
+ visitHash_partbound_elem;
394
+ /**
395
+ * Visit a parse tree produced by `PostgreSQLParser.hash_partbound`.
396
+ * @param ctx the parse tree
397
+ * @return the visitor result
398
+ */
399
+ visitHash_partbound;
400
+ /**
401
+ * Visit a parse tree produced by `PostgreSQLParser.altercompositetypestmt`.
402
+ * @param ctx the parse tree
403
+ * @return the visitor result
404
+ */
405
+ visitAltercompositetypestmt;
406
+ /**
407
+ * Visit a parse tree produced by `PostgreSQLParser.alter_type_cmds`.
408
+ * @param ctx the parse tree
409
+ * @return the visitor result
410
+ */
411
+ visitAlter_type_cmds;
412
+ /**
413
+ * Visit a parse tree produced by `PostgreSQLParser.alter_type_cmd`.
414
+ * @param ctx the parse tree
415
+ * @return the visitor result
416
+ */
417
+ visitAlter_type_cmd;
418
+ /**
419
+ * Visit a parse tree produced by `PostgreSQLParser.closeportalstmt`.
420
+ * @param ctx the parse tree
421
+ * @return the visitor result
422
+ */
423
+ visitCloseportalstmt;
424
+ /**
425
+ * Visit a parse tree produced by `PostgreSQLParser.copystmt`.
426
+ * @param ctx the parse tree
427
+ * @return the visitor result
428
+ */
429
+ visitCopystmt;
430
+ /**
431
+ * Visit a parse tree produced by `PostgreSQLParser.copy_from`.
432
+ * @param ctx the parse tree
433
+ * @return the visitor result
434
+ */
435
+ visitCopy_from;
436
+ /**
437
+ * Visit a parse tree produced by `PostgreSQLParser.program_`.
438
+ * @param ctx the parse tree
439
+ * @return the visitor result
440
+ */
441
+ visitProgram_;
442
+ /**
443
+ * Visit a parse tree produced by `PostgreSQLParser.copy_file_name`.
444
+ * @param ctx the parse tree
445
+ * @return the visitor result
446
+ */
447
+ visitCopy_file_name;
448
+ /**
449
+ * Visit a parse tree produced by `PostgreSQLParser.copy_options`.
450
+ * @param ctx the parse tree
451
+ * @return the visitor result
452
+ */
453
+ visitCopy_options;
454
+ /**
455
+ * Visit a parse tree produced by `PostgreSQLParser.copy_opt_list`.
456
+ * @param ctx the parse tree
457
+ * @return the visitor result
458
+ */
459
+ visitCopy_opt_list;
460
+ /**
461
+ * Visit a parse tree produced by `PostgreSQLParser.copy_opt_item`.
462
+ * @param ctx the parse tree
463
+ * @return the visitor result
464
+ */
465
+ visitCopy_opt_item;
466
+ /**
467
+ * Visit a parse tree produced by `PostgreSQLParser.binary_`.
468
+ * @param ctx the parse tree
469
+ * @return the visitor result
470
+ */
471
+ visitBinary_;
472
+ /**
473
+ * Visit a parse tree produced by `PostgreSQLParser.copy_delimiter`.
474
+ * @param ctx the parse tree
475
+ * @return the visitor result
476
+ */
477
+ visitCopy_delimiter;
478
+ /**
479
+ * Visit a parse tree produced by `PostgreSQLParser.using_`.
480
+ * @param ctx the parse tree
481
+ * @return the visitor result
482
+ */
483
+ visitUsing_;
484
+ /**
485
+ * Visit a parse tree produced by `PostgreSQLParser.copy_generic_opt_list`.
486
+ * @param ctx the parse tree
487
+ * @return the visitor result
488
+ */
489
+ visitCopy_generic_opt_list;
490
+ /**
491
+ * Visit a parse tree produced by `PostgreSQLParser.copy_generic_opt_elem`.
492
+ * @param ctx the parse tree
493
+ * @return the visitor result
494
+ */
495
+ visitCopy_generic_opt_elem;
496
+ /**
497
+ * Visit a parse tree produced by `PostgreSQLParser.copy_generic_opt_arg`.
498
+ * @param ctx the parse tree
499
+ * @return the visitor result
500
+ */
501
+ visitCopy_generic_opt_arg;
502
+ /**
503
+ * Visit a parse tree produced by `PostgreSQLParser.copy_generic_opt_arg_list`.
504
+ * @param ctx the parse tree
505
+ * @return the visitor result
506
+ */
507
+ visitCopy_generic_opt_arg_list;
508
+ /**
509
+ * Visit a parse tree produced by `PostgreSQLParser.copy_generic_opt_arg_list_item`.
510
+ * @param ctx the parse tree
511
+ * @return the visitor result
512
+ */
513
+ visitCopy_generic_opt_arg_list_item;
514
+ /**
515
+ * Visit a parse tree produced by `PostgreSQLParser.createstmt`.
516
+ * @param ctx the parse tree
517
+ * @return the visitor result
518
+ */
519
+ visitCreatestmt;
520
+ /**
521
+ * Visit a parse tree produced by `PostgreSQLParser.opttemp`.
522
+ * @param ctx the parse tree
523
+ * @return the visitor result
524
+ */
525
+ visitOpttemp;
526
+ /**
527
+ * Visit a parse tree produced by `PostgreSQLParser.opttableelementlist`.
528
+ * @param ctx the parse tree
529
+ * @return the visitor result
530
+ */
531
+ visitOpttableelementlist;
532
+ /**
533
+ * Visit a parse tree produced by `PostgreSQLParser.opttypedtableelementlist`.
534
+ * @param ctx the parse tree
535
+ * @return the visitor result
536
+ */
537
+ visitOpttypedtableelementlist;
538
+ /**
539
+ * Visit a parse tree produced by `PostgreSQLParser.tableelementlist`.
540
+ * @param ctx the parse tree
541
+ * @return the visitor result
542
+ */
543
+ visitTableelementlist;
544
+ /**
545
+ * Visit a parse tree produced by `PostgreSQLParser.typedtableelementlist`.
546
+ * @param ctx the parse tree
547
+ * @return the visitor result
548
+ */
549
+ visitTypedtableelementlist;
550
+ /**
551
+ * Visit a parse tree produced by `PostgreSQLParser.tableelement`.
552
+ * @param ctx the parse tree
553
+ * @return the visitor result
554
+ */
555
+ visitTableelement;
556
+ /**
557
+ * Visit a parse tree produced by `PostgreSQLParser.typedtableelement`.
558
+ * @param ctx the parse tree
559
+ * @return the visitor result
560
+ */
561
+ visitTypedtableelement;
562
+ /**
563
+ * Visit a parse tree produced by `PostgreSQLParser.columnDef`.
564
+ * @param ctx the parse tree
565
+ * @return the visitor result
566
+ */
567
+ visitColumnDef;
568
+ /**
569
+ * Visit a parse tree produced by `PostgreSQLParser.columnOptions`.
570
+ * @param ctx the parse tree
571
+ * @return the visitor result
572
+ */
573
+ visitColumnOptions;
574
+ /**
575
+ * Visit a parse tree produced by `PostgreSQLParser.colquallist`.
576
+ * @param ctx the parse tree
577
+ * @return the visitor result
578
+ */
579
+ visitColquallist;
580
+ /**
581
+ * Visit a parse tree produced by `PostgreSQLParser.colconstraint`.
582
+ * @param ctx the parse tree
583
+ * @return the visitor result
584
+ */
585
+ visitColconstraint;
586
+ /**
587
+ * Visit a parse tree produced by `PostgreSQLParser.colconstraintelem`.
588
+ * @param ctx the parse tree
589
+ * @return the visitor result
590
+ */
591
+ visitColconstraintelem;
592
+ /**
593
+ * Visit a parse tree produced by `PostgreSQLParser.generated_when`.
594
+ * @param ctx the parse tree
595
+ * @return the visitor result
596
+ */
597
+ visitGenerated_when;
598
+ /**
599
+ * Visit a parse tree produced by `PostgreSQLParser.constraintattr`.
600
+ * @param ctx the parse tree
601
+ * @return the visitor result
602
+ */
603
+ visitConstraintattr;
604
+ /**
605
+ * Visit a parse tree produced by `PostgreSQLParser.tablelikeclause`.
606
+ * @param ctx the parse tree
607
+ * @return the visitor result
608
+ */
609
+ visitTablelikeclause;
610
+ /**
611
+ * Visit a parse tree produced by `PostgreSQLParser.tablelikeoptionlist`.
612
+ * @param ctx the parse tree
613
+ * @return the visitor result
614
+ */
615
+ visitTablelikeoptionlist;
616
+ /**
617
+ * Visit a parse tree produced by `PostgreSQLParser.tablelikeoption`.
618
+ * @param ctx the parse tree
619
+ * @return the visitor result
620
+ */
621
+ visitTablelikeoption;
622
+ /**
623
+ * Visit a parse tree produced by `PostgreSQLParser.tableconstraint`.
624
+ * @param ctx the parse tree
625
+ * @return the visitor result
626
+ */
627
+ visitTableconstraint;
628
+ /**
629
+ * Visit a parse tree produced by `PostgreSQLParser.constraintelem`.
630
+ * @param ctx the parse tree
631
+ * @return the visitor result
632
+ */
633
+ visitConstraintelem;
634
+ /**
635
+ * Visit a parse tree produced by `PostgreSQLParser.no_inherit_`.
636
+ * @param ctx the parse tree
637
+ * @return the visitor result
638
+ */
639
+ visitNo_inherit_;
640
+ /**
641
+ * Visit a parse tree produced by `PostgreSQLParser.column_list_`.
642
+ * @param ctx the parse tree
643
+ * @return the visitor result
644
+ */
645
+ visitColumn_list_;
646
+ /**
647
+ * Visit a parse tree produced by `PostgreSQLParser.columnlist`.
648
+ * @param ctx the parse tree
649
+ * @return the visitor result
650
+ */
651
+ visitColumnlist;
652
+ /**
653
+ * Visit a parse tree produced by `PostgreSQLParser.columnElem`.
654
+ * @param ctx the parse tree
655
+ * @return the visitor result
656
+ */
657
+ visitColumnElem;
658
+ /**
659
+ * Visit a parse tree produced by `PostgreSQLParser.c_include_`.
660
+ * @param ctx the parse tree
661
+ * @return the visitor result
662
+ */
663
+ visitC_include_;
664
+ /**
665
+ * Visit a parse tree produced by `PostgreSQLParser.key_match`.
666
+ * @param ctx the parse tree
667
+ * @return the visitor result
668
+ */
669
+ visitKey_match;
670
+ /**
671
+ * Visit a parse tree produced by `PostgreSQLParser.exclusionconstraintlist`.
672
+ * @param ctx the parse tree
673
+ * @return the visitor result
674
+ */
675
+ visitExclusionconstraintlist;
676
+ /**
677
+ * Visit a parse tree produced by `PostgreSQLParser.exclusionconstraintelem`.
678
+ * @param ctx the parse tree
679
+ * @return the visitor result
680
+ */
681
+ visitExclusionconstraintelem;
682
+ /**
683
+ * Visit a parse tree produced by `PostgreSQLParser.exclusionwhereclause`.
684
+ * @param ctx the parse tree
685
+ * @return the visitor result
686
+ */
687
+ visitExclusionwhereclause;
688
+ /**
689
+ * Visit a parse tree produced by `PostgreSQLParser.key_actions`.
690
+ * @param ctx the parse tree
691
+ * @return the visitor result
692
+ */
693
+ visitKey_actions;
694
+ /**
695
+ * Visit a parse tree produced by `PostgreSQLParser.key_update`.
696
+ * @param ctx the parse tree
697
+ * @return the visitor result
698
+ */
699
+ visitKey_update;
700
+ /**
701
+ * Visit a parse tree produced by `PostgreSQLParser.key_delete`.
702
+ * @param ctx the parse tree
703
+ * @return the visitor result
704
+ */
705
+ visitKey_delete;
706
+ /**
707
+ * Visit a parse tree produced by `PostgreSQLParser.key_action`.
708
+ * @param ctx the parse tree
709
+ * @return the visitor result
710
+ */
711
+ visitKey_action;
712
+ /**
713
+ * Visit a parse tree produced by `PostgreSQLParser.optinherit`.
714
+ * @param ctx the parse tree
715
+ * @return the visitor result
716
+ */
717
+ visitOptinherit;
718
+ /**
719
+ * Visit a parse tree produced by `PostgreSQLParser.optpartitionspec`.
720
+ * @param ctx the parse tree
721
+ * @return the visitor result
722
+ */
723
+ visitOptpartitionspec;
724
+ /**
725
+ * Visit a parse tree produced by `PostgreSQLParser.partitionspec`.
726
+ * @param ctx the parse tree
727
+ * @return the visitor result
728
+ */
729
+ visitPartitionspec;
730
+ /**
731
+ * Visit a parse tree produced by `PostgreSQLParser.part_params`.
732
+ * @param ctx the parse tree
733
+ * @return the visitor result
734
+ */
735
+ visitPart_params;
736
+ /**
737
+ * Visit a parse tree produced by `PostgreSQLParser.part_elem`.
738
+ * @param ctx the parse tree
739
+ * @return the visitor result
740
+ */
741
+ visitPart_elem;
742
+ /**
743
+ * Visit a parse tree produced by `PostgreSQLParser.table_access_method_clause`.
744
+ * @param ctx the parse tree
745
+ * @return the visitor result
746
+ */
747
+ visitTable_access_method_clause;
748
+ /**
749
+ * Visit a parse tree produced by `PostgreSQLParser.optwith`.
750
+ * @param ctx the parse tree
751
+ * @return the visitor result
752
+ */
753
+ visitOptwith;
754
+ /**
755
+ * Visit a parse tree produced by `PostgreSQLParser.oncommitoption`.
756
+ * @param ctx the parse tree
757
+ * @return the visitor result
758
+ */
759
+ visitOncommitoption;
760
+ /**
761
+ * Visit a parse tree produced by `PostgreSQLParser.opttablespace`.
762
+ * @param ctx the parse tree
763
+ * @return the visitor result
764
+ */
765
+ visitOpttablespace;
766
+ /**
767
+ * Visit a parse tree produced by `PostgreSQLParser.optconstablespace`.
768
+ * @param ctx the parse tree
769
+ * @return the visitor result
770
+ */
771
+ visitOptconstablespace;
772
+ /**
773
+ * Visit a parse tree produced by `PostgreSQLParser.existingindex`.
774
+ * @param ctx the parse tree
775
+ * @return the visitor result
776
+ */
777
+ visitExistingindex;
778
+ /**
779
+ * Visit a parse tree produced by `PostgreSQLParser.createstatsstmt`.
780
+ * @param ctx the parse tree
781
+ * @return the visitor result
782
+ */
783
+ visitCreatestatsstmt;
784
+ /**
785
+ * Visit a parse tree produced by `PostgreSQLParser.alterstatsstmt`.
786
+ * @param ctx the parse tree
787
+ * @return the visitor result
788
+ */
789
+ visitAlterstatsstmt;
790
+ /**
791
+ * Visit a parse tree produced by `PostgreSQLParser.createasstmt`.
792
+ * @param ctx the parse tree
793
+ * @return the visitor result
794
+ */
795
+ visitCreateasstmt;
796
+ /**
797
+ * Visit a parse tree produced by `PostgreSQLParser.create_as_target`.
798
+ * @param ctx the parse tree
799
+ * @return the visitor result
800
+ */
801
+ visitCreate_as_target;
802
+ /**
803
+ * Visit a parse tree produced by `PostgreSQLParser.with_data_`.
804
+ * @param ctx the parse tree
805
+ * @return the visitor result
806
+ */
807
+ visitWith_data_;
808
+ /**
809
+ * Visit a parse tree produced by `PostgreSQLParser.creatematviewstmt`.
810
+ * @param ctx the parse tree
811
+ * @return the visitor result
812
+ */
813
+ visitCreatematviewstmt;
814
+ /**
815
+ * Visit a parse tree produced by `PostgreSQLParser.create_mv_target`.
816
+ * @param ctx the parse tree
817
+ * @return the visitor result
818
+ */
819
+ visitCreate_mv_target;
820
+ /**
821
+ * Visit a parse tree produced by `PostgreSQLParser.optnolog`.
822
+ * @param ctx the parse tree
823
+ * @return the visitor result
824
+ */
825
+ visitOptnolog;
826
+ /**
827
+ * Visit a parse tree produced by `PostgreSQLParser.refreshmatviewstmt`.
828
+ * @param ctx the parse tree
829
+ * @return the visitor result
830
+ */
831
+ visitRefreshmatviewstmt;
832
+ /**
833
+ * Visit a parse tree produced by `PostgreSQLParser.createseqstmt`.
834
+ * @param ctx the parse tree
835
+ * @return the visitor result
836
+ */
837
+ visitCreateseqstmt;
838
+ /**
839
+ * Visit a parse tree produced by `PostgreSQLParser.alterseqstmt`.
840
+ * @param ctx the parse tree
841
+ * @return the visitor result
842
+ */
843
+ visitAlterseqstmt;
844
+ /**
845
+ * Visit a parse tree produced by `PostgreSQLParser.optseqoptlist`.
846
+ * @param ctx the parse tree
847
+ * @return the visitor result
848
+ */
849
+ visitOptseqoptlist;
850
+ /**
851
+ * Visit a parse tree produced by `PostgreSQLParser.optparenthesizedseqoptlist`.
852
+ * @param ctx the parse tree
853
+ * @return the visitor result
854
+ */
855
+ visitOptparenthesizedseqoptlist;
856
+ /**
857
+ * Visit a parse tree produced by `PostgreSQLParser.seqoptlist`.
858
+ * @param ctx the parse tree
859
+ * @return the visitor result
860
+ */
861
+ visitSeqoptlist;
862
+ /**
863
+ * Visit a parse tree produced by `PostgreSQLParser.seqoptelem`.
864
+ * @param ctx the parse tree
865
+ * @return the visitor result
866
+ */
867
+ visitSeqoptelem;
868
+ /**
869
+ * Visit a parse tree produced by `PostgreSQLParser.by_`.
870
+ * @param ctx the parse tree
871
+ * @return the visitor result
872
+ */
873
+ visitBy_;
874
+ /**
875
+ * Visit a parse tree produced by `PostgreSQLParser.numericonly`.
876
+ * @param ctx the parse tree
877
+ * @return the visitor result
878
+ */
879
+ visitNumericonly;
880
+ /**
881
+ * Visit a parse tree produced by `PostgreSQLParser.numericonly_list`.
882
+ * @param ctx the parse tree
883
+ * @return the visitor result
884
+ */
885
+ visitNumericonly_list;
886
+ /**
887
+ * Visit a parse tree produced by `PostgreSQLParser.createplangstmt`.
888
+ * @param ctx the parse tree
889
+ * @return the visitor result
890
+ */
891
+ visitCreateplangstmt;
892
+ /**
893
+ * Visit a parse tree produced by `PostgreSQLParser.trusted_`.
894
+ * @param ctx the parse tree
895
+ * @return the visitor result
896
+ */
897
+ visitTrusted_;
898
+ /**
899
+ * Visit a parse tree produced by `PostgreSQLParser.handler_name`.
900
+ * @param ctx the parse tree
901
+ * @return the visitor result
902
+ */
903
+ visitHandler_name;
904
+ /**
905
+ * Visit a parse tree produced by `PostgreSQLParser.inline_handler_`.
906
+ * @param ctx the parse tree
907
+ * @return the visitor result
908
+ */
909
+ visitInline_handler_;
910
+ /**
911
+ * Visit a parse tree produced by `PostgreSQLParser.validator_clause`.
912
+ * @param ctx the parse tree
913
+ * @return the visitor result
914
+ */
915
+ visitValidator_clause;
916
+ /**
917
+ * Visit a parse tree produced by `PostgreSQLParser.validator_`.
918
+ * @param ctx the parse tree
919
+ * @return the visitor result
920
+ */
921
+ visitValidator_;
922
+ /**
923
+ * Visit a parse tree produced by `PostgreSQLParser.procedural_`.
924
+ * @param ctx the parse tree
925
+ * @return the visitor result
926
+ */
927
+ visitProcedural_;
928
+ /**
929
+ * Visit a parse tree produced by `PostgreSQLParser.createtablespacestmt`.
930
+ * @param ctx the parse tree
931
+ * @return the visitor result
932
+ */
933
+ visitCreatetablespacestmt;
934
+ /**
935
+ * Visit a parse tree produced by `PostgreSQLParser.opttablespaceowner`.
936
+ * @param ctx the parse tree
937
+ * @return the visitor result
938
+ */
939
+ visitOpttablespaceowner;
940
+ /**
941
+ * Visit a parse tree produced by `PostgreSQLParser.droptablespacestmt`.
942
+ * @param ctx the parse tree
943
+ * @return the visitor result
944
+ */
945
+ visitDroptablespacestmt;
946
+ /**
947
+ * Visit a parse tree produced by `PostgreSQLParser.createextensionstmt`.
948
+ * @param ctx the parse tree
949
+ * @return the visitor result
950
+ */
951
+ visitCreateextensionstmt;
952
+ /**
953
+ * Visit a parse tree produced by `PostgreSQLParser.create_extension_opt_list`.
954
+ * @param ctx the parse tree
955
+ * @return the visitor result
956
+ */
957
+ visitCreate_extension_opt_list;
958
+ /**
959
+ * Visit a parse tree produced by `PostgreSQLParser.create_extension_opt_item`.
960
+ * @param ctx the parse tree
961
+ * @return the visitor result
962
+ */
963
+ visitCreate_extension_opt_item;
964
+ /**
965
+ * Visit a parse tree produced by `PostgreSQLParser.alterextensionstmt`.
966
+ * @param ctx the parse tree
967
+ * @return the visitor result
968
+ */
969
+ visitAlterextensionstmt;
970
+ /**
971
+ * Visit a parse tree produced by `PostgreSQLParser.alter_extension_opt_list`.
972
+ * @param ctx the parse tree
973
+ * @return the visitor result
974
+ */
975
+ visitAlter_extension_opt_list;
976
+ /**
977
+ * Visit a parse tree produced by `PostgreSQLParser.alter_extension_opt_item`.
978
+ * @param ctx the parse tree
979
+ * @return the visitor result
980
+ */
981
+ visitAlter_extension_opt_item;
982
+ /**
983
+ * Visit a parse tree produced by `PostgreSQLParser.alterextensioncontentsstmt`.
984
+ * @param ctx the parse tree
985
+ * @return the visitor result
986
+ */
987
+ visitAlterextensioncontentsstmt;
988
+ /**
989
+ * Visit a parse tree produced by `PostgreSQLParser.createfdwstmt`.
990
+ * @param ctx the parse tree
991
+ * @return the visitor result
992
+ */
993
+ visitCreatefdwstmt;
994
+ /**
995
+ * Visit a parse tree produced by `PostgreSQLParser.fdw_option`.
996
+ * @param ctx the parse tree
997
+ * @return the visitor result
998
+ */
999
+ visitFdw_option;
1000
+ /**
1001
+ * Visit a parse tree produced by `PostgreSQLParser.fdw_options`.
1002
+ * @param ctx the parse tree
1003
+ * @return the visitor result
1004
+ */
1005
+ visitFdw_options;
1006
+ /**
1007
+ * Visit a parse tree produced by `PostgreSQLParser.fdw_options_`.
1008
+ * @param ctx the parse tree
1009
+ * @return the visitor result
1010
+ */
1011
+ visitFdw_options_;
1012
+ /**
1013
+ * Visit a parse tree produced by `PostgreSQLParser.alterfdwstmt`.
1014
+ * @param ctx the parse tree
1015
+ * @return the visitor result
1016
+ */
1017
+ visitAlterfdwstmt;
1018
+ /**
1019
+ * Visit a parse tree produced by `PostgreSQLParser.create_generic_options`.
1020
+ * @param ctx the parse tree
1021
+ * @return the visitor result
1022
+ */
1023
+ visitCreate_generic_options;
1024
+ /**
1025
+ * Visit a parse tree produced by `PostgreSQLParser.generic_option_list`.
1026
+ * @param ctx the parse tree
1027
+ * @return the visitor result
1028
+ */
1029
+ visitGeneric_option_list;
1030
+ /**
1031
+ * Visit a parse tree produced by `PostgreSQLParser.alter_generic_options`.
1032
+ * @param ctx the parse tree
1033
+ * @return the visitor result
1034
+ */
1035
+ visitAlter_generic_options;
1036
+ /**
1037
+ * Visit a parse tree produced by `PostgreSQLParser.alter_generic_option_list`.
1038
+ * @param ctx the parse tree
1039
+ * @return the visitor result
1040
+ */
1041
+ visitAlter_generic_option_list;
1042
+ /**
1043
+ * Visit a parse tree produced by `PostgreSQLParser.alter_generic_option_elem`.
1044
+ * @param ctx the parse tree
1045
+ * @return the visitor result
1046
+ */
1047
+ visitAlter_generic_option_elem;
1048
+ /**
1049
+ * Visit a parse tree produced by `PostgreSQLParser.generic_option_elem`.
1050
+ * @param ctx the parse tree
1051
+ * @return the visitor result
1052
+ */
1053
+ visitGeneric_option_elem;
1054
+ /**
1055
+ * Visit a parse tree produced by `PostgreSQLParser.generic_option_name`.
1056
+ * @param ctx the parse tree
1057
+ * @return the visitor result
1058
+ */
1059
+ visitGeneric_option_name;
1060
+ /**
1061
+ * Visit a parse tree produced by `PostgreSQLParser.generic_option_arg`.
1062
+ * @param ctx the parse tree
1063
+ * @return the visitor result
1064
+ */
1065
+ visitGeneric_option_arg;
1066
+ /**
1067
+ * Visit a parse tree produced by `PostgreSQLParser.createforeignserverstmt`.
1068
+ * @param ctx the parse tree
1069
+ * @return the visitor result
1070
+ */
1071
+ visitCreateforeignserverstmt;
1072
+ /**
1073
+ * Visit a parse tree produced by `PostgreSQLParser.type_`.
1074
+ * @param ctx the parse tree
1075
+ * @return the visitor result
1076
+ */
1077
+ visitType_;
1078
+ /**
1079
+ * Visit a parse tree produced by `PostgreSQLParser.foreign_server_version`.
1080
+ * @param ctx the parse tree
1081
+ * @return the visitor result
1082
+ */
1083
+ visitForeign_server_version;
1084
+ /**
1085
+ * Visit a parse tree produced by `PostgreSQLParser.foreign_server_version_`.
1086
+ * @param ctx the parse tree
1087
+ * @return the visitor result
1088
+ */
1089
+ visitForeign_server_version_;
1090
+ /**
1091
+ * Visit a parse tree produced by `PostgreSQLParser.alterforeignserverstmt`.
1092
+ * @param ctx the parse tree
1093
+ * @return the visitor result
1094
+ */
1095
+ visitAlterforeignserverstmt;
1096
+ /**
1097
+ * Visit a parse tree produced by `PostgreSQLParser.createforeigntablestmt`.
1098
+ * @param ctx the parse tree
1099
+ * @return the visitor result
1100
+ */
1101
+ visitCreateforeigntablestmt;
1102
+ /**
1103
+ * Visit a parse tree produced by `PostgreSQLParser.importforeignschemastmt`.
1104
+ * @param ctx the parse tree
1105
+ * @return the visitor result
1106
+ */
1107
+ visitImportforeignschemastmt;
1108
+ /**
1109
+ * Visit a parse tree produced by `PostgreSQLParser.import_qualification_type`.
1110
+ * @param ctx the parse tree
1111
+ * @return the visitor result
1112
+ */
1113
+ visitImport_qualification_type;
1114
+ /**
1115
+ * Visit a parse tree produced by `PostgreSQLParser.import_qualification`.
1116
+ * @param ctx the parse tree
1117
+ * @return the visitor result
1118
+ */
1119
+ visitImport_qualification;
1120
+ /**
1121
+ * Visit a parse tree produced by `PostgreSQLParser.createusermappingstmt`.
1122
+ * @param ctx the parse tree
1123
+ * @return the visitor result
1124
+ */
1125
+ visitCreateusermappingstmt;
1126
+ /**
1127
+ * Visit a parse tree produced by `PostgreSQLParser.auth_ident`.
1128
+ * @param ctx the parse tree
1129
+ * @return the visitor result
1130
+ */
1131
+ visitAuth_ident;
1132
+ /**
1133
+ * Visit a parse tree produced by `PostgreSQLParser.dropusermappingstmt`.
1134
+ * @param ctx the parse tree
1135
+ * @return the visitor result
1136
+ */
1137
+ visitDropusermappingstmt;
1138
+ /**
1139
+ * Visit a parse tree produced by `PostgreSQLParser.alterusermappingstmt`.
1140
+ * @param ctx the parse tree
1141
+ * @return the visitor result
1142
+ */
1143
+ visitAlterusermappingstmt;
1144
+ /**
1145
+ * Visit a parse tree produced by `PostgreSQLParser.createpolicystmt`.
1146
+ * @param ctx the parse tree
1147
+ * @return the visitor result
1148
+ */
1149
+ visitCreatepolicystmt;
1150
+ /**
1151
+ * Visit a parse tree produced by `PostgreSQLParser.alterpolicystmt`.
1152
+ * @param ctx the parse tree
1153
+ * @return the visitor result
1154
+ */
1155
+ visitAlterpolicystmt;
1156
+ /**
1157
+ * Visit a parse tree produced by `PostgreSQLParser.rowsecurityoptionalexpr`.
1158
+ * @param ctx the parse tree
1159
+ * @return the visitor result
1160
+ */
1161
+ visitRowsecurityoptionalexpr;
1162
+ /**
1163
+ * Visit a parse tree produced by `PostgreSQLParser.rowsecurityoptionalwithcheck`.
1164
+ * @param ctx the parse tree
1165
+ * @return the visitor result
1166
+ */
1167
+ visitRowsecurityoptionalwithcheck;
1168
+ /**
1169
+ * Visit a parse tree produced by `PostgreSQLParser.rowsecuritydefaulttorole`.
1170
+ * @param ctx the parse tree
1171
+ * @return the visitor result
1172
+ */
1173
+ visitRowsecuritydefaulttorole;
1174
+ /**
1175
+ * Visit a parse tree produced by `PostgreSQLParser.rowsecurityoptionaltorole`.
1176
+ * @param ctx the parse tree
1177
+ * @return the visitor result
1178
+ */
1179
+ visitRowsecurityoptionaltorole;
1180
+ /**
1181
+ * Visit a parse tree produced by `PostgreSQLParser.rowsecuritydefaultpermissive`.
1182
+ * @param ctx the parse tree
1183
+ * @return the visitor result
1184
+ */
1185
+ visitRowsecuritydefaultpermissive;
1186
+ /**
1187
+ * Visit a parse tree produced by `PostgreSQLParser.rowsecuritydefaultforcmd`.
1188
+ * @param ctx the parse tree
1189
+ * @return the visitor result
1190
+ */
1191
+ visitRowsecuritydefaultforcmd;
1192
+ /**
1193
+ * Visit a parse tree produced by `PostgreSQLParser.row_security_cmd`.
1194
+ * @param ctx the parse tree
1195
+ * @return the visitor result
1196
+ */
1197
+ visitRow_security_cmd;
1198
+ /**
1199
+ * Visit a parse tree produced by `PostgreSQLParser.createamstmt`.
1200
+ * @param ctx the parse tree
1201
+ * @return the visitor result
1202
+ */
1203
+ visitCreateamstmt;
1204
+ /**
1205
+ * Visit a parse tree produced by `PostgreSQLParser.am_type`.
1206
+ * @param ctx the parse tree
1207
+ * @return the visitor result
1208
+ */
1209
+ visitAm_type;
1210
+ /**
1211
+ * Visit a parse tree produced by `PostgreSQLParser.createtrigstmt`.
1212
+ * @param ctx the parse tree
1213
+ * @return the visitor result
1214
+ */
1215
+ visitCreatetrigstmt;
1216
+ /**
1217
+ * Visit a parse tree produced by `PostgreSQLParser.triggeractiontime`.
1218
+ * @param ctx the parse tree
1219
+ * @return the visitor result
1220
+ */
1221
+ visitTriggeractiontime;
1222
+ /**
1223
+ * Visit a parse tree produced by `PostgreSQLParser.triggerevents`.
1224
+ * @param ctx the parse tree
1225
+ * @return the visitor result
1226
+ */
1227
+ visitTriggerevents;
1228
+ /**
1229
+ * Visit a parse tree produced by `PostgreSQLParser.triggeroneevent`.
1230
+ * @param ctx the parse tree
1231
+ * @return the visitor result
1232
+ */
1233
+ visitTriggeroneevent;
1234
+ /**
1235
+ * Visit a parse tree produced by `PostgreSQLParser.triggerreferencing`.
1236
+ * @param ctx the parse tree
1237
+ * @return the visitor result
1238
+ */
1239
+ visitTriggerreferencing;
1240
+ /**
1241
+ * Visit a parse tree produced by `PostgreSQLParser.triggertransitions`.
1242
+ * @param ctx the parse tree
1243
+ * @return the visitor result
1244
+ */
1245
+ visitTriggertransitions;
1246
+ /**
1247
+ * Visit a parse tree produced by `PostgreSQLParser.triggertransition`.
1248
+ * @param ctx the parse tree
1249
+ * @return the visitor result
1250
+ */
1251
+ visitTriggertransition;
1252
+ /**
1253
+ * Visit a parse tree produced by `PostgreSQLParser.transitionoldornew`.
1254
+ * @param ctx the parse tree
1255
+ * @return the visitor result
1256
+ */
1257
+ visitTransitionoldornew;
1258
+ /**
1259
+ * Visit a parse tree produced by `PostgreSQLParser.transitionrowortable`.
1260
+ * @param ctx the parse tree
1261
+ * @return the visitor result
1262
+ */
1263
+ visitTransitionrowortable;
1264
+ /**
1265
+ * Visit a parse tree produced by `PostgreSQLParser.transitionrelname`.
1266
+ * @param ctx the parse tree
1267
+ * @return the visitor result
1268
+ */
1269
+ visitTransitionrelname;
1270
+ /**
1271
+ * Visit a parse tree produced by `PostgreSQLParser.triggerforspec`.
1272
+ * @param ctx the parse tree
1273
+ * @return the visitor result
1274
+ */
1275
+ visitTriggerforspec;
1276
+ /**
1277
+ * Visit a parse tree produced by `PostgreSQLParser.triggerforopteach`.
1278
+ * @param ctx the parse tree
1279
+ * @return the visitor result
1280
+ */
1281
+ visitTriggerforopteach;
1282
+ /**
1283
+ * Visit a parse tree produced by `PostgreSQLParser.triggerfortype`.
1284
+ * @param ctx the parse tree
1285
+ * @return the visitor result
1286
+ */
1287
+ visitTriggerfortype;
1288
+ /**
1289
+ * Visit a parse tree produced by `PostgreSQLParser.triggerwhen`.
1290
+ * @param ctx the parse tree
1291
+ * @return the visitor result
1292
+ */
1293
+ visitTriggerwhen;
1294
+ /**
1295
+ * Visit a parse tree produced by `PostgreSQLParser.function_or_procedure`.
1296
+ * @param ctx the parse tree
1297
+ * @return the visitor result
1298
+ */
1299
+ visitFunction_or_procedure;
1300
+ /**
1301
+ * Visit a parse tree produced by `PostgreSQLParser.triggerfuncargs`.
1302
+ * @param ctx the parse tree
1303
+ * @return the visitor result
1304
+ */
1305
+ visitTriggerfuncargs;
1306
+ /**
1307
+ * Visit a parse tree produced by `PostgreSQLParser.triggerfuncarg`.
1308
+ * @param ctx the parse tree
1309
+ * @return the visitor result
1310
+ */
1311
+ visitTriggerfuncarg;
1312
+ /**
1313
+ * Visit a parse tree produced by `PostgreSQLParser.optconstrfromtable`.
1314
+ * @param ctx the parse tree
1315
+ * @return the visitor result
1316
+ */
1317
+ visitOptconstrfromtable;
1318
+ /**
1319
+ * Visit a parse tree produced by `PostgreSQLParser.constraintattributespec`.
1320
+ * @param ctx the parse tree
1321
+ * @return the visitor result
1322
+ */
1323
+ visitConstraintattributespec;
1324
+ /**
1325
+ * Visit a parse tree produced by `PostgreSQLParser.constraintattributeElem`.
1326
+ * @param ctx the parse tree
1327
+ * @return the visitor result
1328
+ */
1329
+ visitConstraintattributeElem;
1330
+ /**
1331
+ * Visit a parse tree produced by `PostgreSQLParser.createeventtrigstmt`.
1332
+ * @param ctx the parse tree
1333
+ * @return the visitor result
1334
+ */
1335
+ visitCreateeventtrigstmt;
1336
+ /**
1337
+ * Visit a parse tree produced by `PostgreSQLParser.event_trigger_when_list`.
1338
+ * @param ctx the parse tree
1339
+ * @return the visitor result
1340
+ */
1341
+ visitEvent_trigger_when_list;
1342
+ /**
1343
+ * Visit a parse tree produced by `PostgreSQLParser.event_trigger_when_item`.
1344
+ * @param ctx the parse tree
1345
+ * @return the visitor result
1346
+ */
1347
+ visitEvent_trigger_when_item;
1348
+ /**
1349
+ * Visit a parse tree produced by `PostgreSQLParser.event_trigger_value_list`.
1350
+ * @param ctx the parse tree
1351
+ * @return the visitor result
1352
+ */
1353
+ visitEvent_trigger_value_list;
1354
+ /**
1355
+ * Visit a parse tree produced by `PostgreSQLParser.altereventtrigstmt`.
1356
+ * @param ctx the parse tree
1357
+ * @return the visitor result
1358
+ */
1359
+ visitAltereventtrigstmt;
1360
+ /**
1361
+ * Visit a parse tree produced by `PostgreSQLParser.enable_trigger`.
1362
+ * @param ctx the parse tree
1363
+ * @return the visitor result
1364
+ */
1365
+ visitEnable_trigger;
1366
+ /**
1367
+ * Visit a parse tree produced by `PostgreSQLParser.createassertionstmt`.
1368
+ * @param ctx the parse tree
1369
+ * @return the visitor result
1370
+ */
1371
+ visitCreateassertionstmt;
1372
+ /**
1373
+ * Visit a parse tree produced by `PostgreSQLParser.definestmt`.
1374
+ * @param ctx the parse tree
1375
+ * @return the visitor result
1376
+ */
1377
+ visitDefinestmt;
1378
+ /**
1379
+ * Visit a parse tree produced by `PostgreSQLParser.definition`.
1380
+ * @param ctx the parse tree
1381
+ * @return the visitor result
1382
+ */
1383
+ visitDefinition;
1384
+ /**
1385
+ * Visit a parse tree produced by `PostgreSQLParser.def_list`.
1386
+ * @param ctx the parse tree
1387
+ * @return the visitor result
1388
+ */
1389
+ visitDef_list;
1390
+ /**
1391
+ * Visit a parse tree produced by `PostgreSQLParser.def_elem`.
1392
+ * @param ctx the parse tree
1393
+ * @return the visitor result
1394
+ */
1395
+ visitDef_elem;
1396
+ /**
1397
+ * Visit a parse tree produced by `PostgreSQLParser.def_arg`.
1398
+ * @param ctx the parse tree
1399
+ * @return the visitor result
1400
+ */
1401
+ visitDef_arg;
1402
+ /**
1403
+ * Visit a parse tree produced by `PostgreSQLParser.old_aggr_definition`.
1404
+ * @param ctx the parse tree
1405
+ * @return the visitor result
1406
+ */
1407
+ visitOld_aggr_definition;
1408
+ /**
1409
+ * Visit a parse tree produced by `PostgreSQLParser.old_aggr_list`.
1410
+ * @param ctx the parse tree
1411
+ * @return the visitor result
1412
+ */
1413
+ visitOld_aggr_list;
1414
+ /**
1415
+ * Visit a parse tree produced by `PostgreSQLParser.old_aggr_elem`.
1416
+ * @param ctx the parse tree
1417
+ * @return the visitor result
1418
+ */
1419
+ visitOld_aggr_elem;
1420
+ /**
1421
+ * Visit a parse tree produced by `PostgreSQLParser.enum_val_list_`.
1422
+ * @param ctx the parse tree
1423
+ * @return the visitor result
1424
+ */
1425
+ visitEnum_val_list_;
1426
+ /**
1427
+ * Visit a parse tree produced by `PostgreSQLParser.enum_val_list`.
1428
+ * @param ctx the parse tree
1429
+ * @return the visitor result
1430
+ */
1431
+ visitEnum_val_list;
1432
+ /**
1433
+ * Visit a parse tree produced by `PostgreSQLParser.alterenumstmt`.
1434
+ * @param ctx the parse tree
1435
+ * @return the visitor result
1436
+ */
1437
+ visitAlterenumstmt;
1438
+ /**
1439
+ * Visit a parse tree produced by `PostgreSQLParser.if_not_exists_`.
1440
+ * @param ctx the parse tree
1441
+ * @return the visitor result
1442
+ */
1443
+ visitIf_not_exists_;
1444
+ /**
1445
+ * Visit a parse tree produced by `PostgreSQLParser.createopclassstmt`.
1446
+ * @param ctx the parse tree
1447
+ * @return the visitor result
1448
+ */
1449
+ visitCreateopclassstmt;
1450
+ /**
1451
+ * Visit a parse tree produced by `PostgreSQLParser.opclass_item_list`.
1452
+ * @param ctx the parse tree
1453
+ * @return the visitor result
1454
+ */
1455
+ visitOpclass_item_list;
1456
+ /**
1457
+ * Visit a parse tree produced by `PostgreSQLParser.opclass_item`.
1458
+ * @param ctx the parse tree
1459
+ * @return the visitor result
1460
+ */
1461
+ visitOpclass_item;
1462
+ /**
1463
+ * Visit a parse tree produced by `PostgreSQLParser.default_`.
1464
+ * @param ctx the parse tree
1465
+ * @return the visitor result
1466
+ */
1467
+ visitDefault_;
1468
+ /**
1469
+ * Visit a parse tree produced by `PostgreSQLParser.opfamily_`.
1470
+ * @param ctx the parse tree
1471
+ * @return the visitor result
1472
+ */
1473
+ visitOpfamily_;
1474
+ /**
1475
+ * Visit a parse tree produced by `PostgreSQLParser.opclass_purpose`.
1476
+ * @param ctx the parse tree
1477
+ * @return the visitor result
1478
+ */
1479
+ visitOpclass_purpose;
1480
+ /**
1481
+ * Visit a parse tree produced by `PostgreSQLParser.recheck_`.
1482
+ * @param ctx the parse tree
1483
+ * @return the visitor result
1484
+ */
1485
+ visitRecheck_;
1486
+ /**
1487
+ * Visit a parse tree produced by `PostgreSQLParser.createopfamilystmt`.
1488
+ * @param ctx the parse tree
1489
+ * @return the visitor result
1490
+ */
1491
+ visitCreateopfamilystmt;
1492
+ /**
1493
+ * Visit a parse tree produced by `PostgreSQLParser.alteropfamilystmt`.
1494
+ * @param ctx the parse tree
1495
+ * @return the visitor result
1496
+ */
1497
+ visitAlteropfamilystmt;
1498
+ /**
1499
+ * Visit a parse tree produced by `PostgreSQLParser.opclass_drop_list`.
1500
+ * @param ctx the parse tree
1501
+ * @return the visitor result
1502
+ */
1503
+ visitOpclass_drop_list;
1504
+ /**
1505
+ * Visit a parse tree produced by `PostgreSQLParser.opclass_drop`.
1506
+ * @param ctx the parse tree
1507
+ * @return the visitor result
1508
+ */
1509
+ visitOpclass_drop;
1510
+ /**
1511
+ * Visit a parse tree produced by `PostgreSQLParser.dropopclassstmt`.
1512
+ * @param ctx the parse tree
1513
+ * @return the visitor result
1514
+ */
1515
+ visitDropopclassstmt;
1516
+ /**
1517
+ * Visit a parse tree produced by `PostgreSQLParser.dropopfamilystmt`.
1518
+ * @param ctx the parse tree
1519
+ * @return the visitor result
1520
+ */
1521
+ visitDropopfamilystmt;
1522
+ /**
1523
+ * Visit a parse tree produced by `PostgreSQLParser.dropownedstmt`.
1524
+ * @param ctx the parse tree
1525
+ * @return the visitor result
1526
+ */
1527
+ visitDropownedstmt;
1528
+ /**
1529
+ * Visit a parse tree produced by `PostgreSQLParser.reassignownedstmt`.
1530
+ * @param ctx the parse tree
1531
+ * @return the visitor result
1532
+ */
1533
+ visitReassignownedstmt;
1534
+ /**
1535
+ * Visit a parse tree produced by `PostgreSQLParser.dropstmt`.
1536
+ * @param ctx the parse tree
1537
+ * @return the visitor result
1538
+ */
1539
+ visitDropstmt;
1540
+ /**
1541
+ * Visit a parse tree produced by `PostgreSQLParser.object_type_any_name`.
1542
+ * @param ctx the parse tree
1543
+ * @return the visitor result
1544
+ */
1545
+ visitObject_type_any_name;
1546
+ /**
1547
+ * Visit a parse tree produced by `PostgreSQLParser.object_type_name`.
1548
+ * @param ctx the parse tree
1549
+ * @return the visitor result
1550
+ */
1551
+ visitObject_type_name;
1552
+ /**
1553
+ * Visit a parse tree produced by `PostgreSQLParser.drop_type_name`.
1554
+ * @param ctx the parse tree
1555
+ * @return the visitor result
1556
+ */
1557
+ visitDrop_type_name;
1558
+ /**
1559
+ * Visit a parse tree produced by `PostgreSQLParser.object_type_name_on_any_name`.
1560
+ * @param ctx the parse tree
1561
+ * @return the visitor result
1562
+ */
1563
+ visitObject_type_name_on_any_name;
1564
+ /**
1565
+ * Visit a parse tree produced by `PostgreSQLParser.any_name_list_`.
1566
+ * @param ctx the parse tree
1567
+ * @return the visitor result
1568
+ */
1569
+ visitAny_name_list_;
1570
+ /**
1571
+ * Visit a parse tree produced by `PostgreSQLParser.any_name`.
1572
+ * @param ctx the parse tree
1573
+ * @return the visitor result
1574
+ */
1575
+ visitAny_name;
1576
+ /**
1577
+ * Visit a parse tree produced by `PostgreSQLParser.attrs`.
1578
+ * @param ctx the parse tree
1579
+ * @return the visitor result
1580
+ */
1581
+ visitAttrs;
1582
+ /**
1583
+ * Visit a parse tree produced by `PostgreSQLParser.type_name_list`.
1584
+ * @param ctx the parse tree
1585
+ * @return the visitor result
1586
+ */
1587
+ visitType_name_list;
1588
+ /**
1589
+ * Visit a parse tree produced by `PostgreSQLParser.truncatestmt`.
1590
+ * @param ctx the parse tree
1591
+ * @return the visitor result
1592
+ */
1593
+ visitTruncatestmt;
1594
+ /**
1595
+ * Visit a parse tree produced by `PostgreSQLParser.restart_seqs_`.
1596
+ * @param ctx the parse tree
1597
+ * @return the visitor result
1598
+ */
1599
+ visitRestart_seqs_;
1600
+ /**
1601
+ * Visit a parse tree produced by `PostgreSQLParser.commentstmt`.
1602
+ * @param ctx the parse tree
1603
+ * @return the visitor result
1604
+ */
1605
+ visitCommentstmt;
1606
+ /**
1607
+ * Visit a parse tree produced by `PostgreSQLParser.comment_text`.
1608
+ * @param ctx the parse tree
1609
+ * @return the visitor result
1610
+ */
1611
+ visitComment_text;
1612
+ /**
1613
+ * Visit a parse tree produced by `PostgreSQLParser.seclabelstmt`.
1614
+ * @param ctx the parse tree
1615
+ * @return the visitor result
1616
+ */
1617
+ visitSeclabelstmt;
1618
+ /**
1619
+ * Visit a parse tree produced by `PostgreSQLParser.provider_`.
1620
+ * @param ctx the parse tree
1621
+ * @return the visitor result
1622
+ */
1623
+ visitProvider_;
1624
+ /**
1625
+ * Visit a parse tree produced by `PostgreSQLParser.security_label`.
1626
+ * @param ctx the parse tree
1627
+ * @return the visitor result
1628
+ */
1629
+ visitSecurity_label;
1630
+ /**
1631
+ * Visit a parse tree produced by `PostgreSQLParser.fetchstmt`.
1632
+ * @param ctx the parse tree
1633
+ * @return the visitor result
1634
+ */
1635
+ visitFetchstmt;
1636
+ /**
1637
+ * Visit a parse tree produced by `PostgreSQLParser.fetch_args`.
1638
+ * @param ctx the parse tree
1639
+ * @return the visitor result
1640
+ */
1641
+ visitFetch_args;
1642
+ /**
1643
+ * Visit a parse tree produced by `PostgreSQLParser.from_in`.
1644
+ * @param ctx the parse tree
1645
+ * @return the visitor result
1646
+ */
1647
+ visitFrom_in;
1648
+ /**
1649
+ * Visit a parse tree produced by `PostgreSQLParser.from_in_`.
1650
+ * @param ctx the parse tree
1651
+ * @return the visitor result
1652
+ */
1653
+ visitFrom_in_;
1654
+ /**
1655
+ * Visit a parse tree produced by `PostgreSQLParser.grantstmt`.
1656
+ * @param ctx the parse tree
1657
+ * @return the visitor result
1658
+ */
1659
+ visitGrantstmt;
1660
+ /**
1661
+ * Visit a parse tree produced by `PostgreSQLParser.revokestmt`.
1662
+ * @param ctx the parse tree
1663
+ * @return the visitor result
1664
+ */
1665
+ visitRevokestmt;
1666
+ /**
1667
+ * Visit a parse tree produced by `PostgreSQLParser.privileges`.
1668
+ * @param ctx the parse tree
1669
+ * @return the visitor result
1670
+ */
1671
+ visitPrivileges;
1672
+ /**
1673
+ * Visit a parse tree produced by `PostgreSQLParser.privilege_list`.
1674
+ * @param ctx the parse tree
1675
+ * @return the visitor result
1676
+ */
1677
+ visitPrivilege_list;
1678
+ /**
1679
+ * Visit a parse tree produced by `PostgreSQLParser.privilege`.
1680
+ * @param ctx the parse tree
1681
+ * @return the visitor result
1682
+ */
1683
+ visitPrivilege;
1684
+ /**
1685
+ * Visit a parse tree produced by `PostgreSQLParser.privilege_target`.
1686
+ * @param ctx the parse tree
1687
+ * @return the visitor result
1688
+ */
1689
+ visitPrivilege_target;
1690
+ /**
1691
+ * Visit a parse tree produced by `PostgreSQLParser.grantee_list`.
1692
+ * @param ctx the parse tree
1693
+ * @return the visitor result
1694
+ */
1695
+ visitGrantee_list;
1696
+ /**
1697
+ * Visit a parse tree produced by `PostgreSQLParser.grantee`.
1698
+ * @param ctx the parse tree
1699
+ * @return the visitor result
1700
+ */
1701
+ visitGrantee;
1702
+ /**
1703
+ * Visit a parse tree produced by `PostgreSQLParser.grant_grant_option_`.
1704
+ * @param ctx the parse tree
1705
+ * @return the visitor result
1706
+ */
1707
+ visitGrant_grant_option_;
1708
+ /**
1709
+ * Visit a parse tree produced by `PostgreSQLParser.grantrolestmt`.
1710
+ * @param ctx the parse tree
1711
+ * @return the visitor result
1712
+ */
1713
+ visitGrantrolestmt;
1714
+ /**
1715
+ * Visit a parse tree produced by `PostgreSQLParser.revokerolestmt`.
1716
+ * @param ctx the parse tree
1717
+ * @return the visitor result
1718
+ */
1719
+ visitRevokerolestmt;
1720
+ /**
1721
+ * Visit a parse tree produced by `PostgreSQLParser.grant_admin_option_`.
1722
+ * @param ctx the parse tree
1723
+ * @return the visitor result
1724
+ */
1725
+ visitGrant_admin_option_;
1726
+ /**
1727
+ * Visit a parse tree produced by `PostgreSQLParser.granted_by_`.
1728
+ * @param ctx the parse tree
1729
+ * @return the visitor result
1730
+ */
1731
+ visitGranted_by_;
1732
+ /**
1733
+ * Visit a parse tree produced by `PostgreSQLParser.alterdefaultprivilegesstmt`.
1734
+ * @param ctx the parse tree
1735
+ * @return the visitor result
1736
+ */
1737
+ visitAlterdefaultprivilegesstmt;
1738
+ /**
1739
+ * Visit a parse tree produced by `PostgreSQLParser.defacloptionlist`.
1740
+ * @param ctx the parse tree
1741
+ * @return the visitor result
1742
+ */
1743
+ visitDefacloptionlist;
1744
+ /**
1745
+ * Visit a parse tree produced by `PostgreSQLParser.defacloption`.
1746
+ * @param ctx the parse tree
1747
+ * @return the visitor result
1748
+ */
1749
+ visitDefacloption;
1750
+ /**
1751
+ * Visit a parse tree produced by `PostgreSQLParser.defaclaction`.
1752
+ * @param ctx the parse tree
1753
+ * @return the visitor result
1754
+ */
1755
+ visitDefaclaction;
1756
+ /**
1757
+ * Visit a parse tree produced by `PostgreSQLParser.defacl_privilege_target`.
1758
+ * @param ctx the parse tree
1759
+ * @return the visitor result
1760
+ */
1761
+ visitDefacl_privilege_target;
1762
+ /**
1763
+ * Visit a parse tree produced by `PostgreSQLParser.indexstmt`.
1764
+ * @param ctx the parse tree
1765
+ * @return the visitor result
1766
+ */
1767
+ visitIndexstmt;
1768
+ /**
1769
+ * Visit a parse tree produced by `PostgreSQLParser.unique_`.
1770
+ * @param ctx the parse tree
1771
+ * @return the visitor result
1772
+ */
1773
+ visitUnique_;
1774
+ /**
1775
+ * Visit a parse tree produced by `PostgreSQLParser.nulls_distinct`.
1776
+ * @param ctx the parse tree
1777
+ * @return the visitor result
1778
+ */
1779
+ visitNulls_distinct;
1780
+ /**
1781
+ * Visit a parse tree produced by `PostgreSQLParser.single_name_`.
1782
+ * @param ctx the parse tree
1783
+ * @return the visitor result
1784
+ */
1785
+ visitSingle_name_;
1786
+ /**
1787
+ * Visit a parse tree produced by `PostgreSQLParser.concurrently_`.
1788
+ * @param ctx the parse tree
1789
+ * @return the visitor result
1790
+ */
1791
+ visitConcurrently_;
1792
+ /**
1793
+ * Visit a parse tree produced by `PostgreSQLParser.index_name_`.
1794
+ * @param ctx the parse tree
1795
+ * @return the visitor result
1796
+ */
1797
+ visitIndex_name_;
1798
+ /**
1799
+ * Visit a parse tree produced by `PostgreSQLParser.access_method_clause`.
1800
+ * @param ctx the parse tree
1801
+ * @return the visitor result
1802
+ */
1803
+ visitAccess_method_clause;
1804
+ /**
1805
+ * Visit a parse tree produced by `PostgreSQLParser.index_params`.
1806
+ * @param ctx the parse tree
1807
+ * @return the visitor result
1808
+ */
1809
+ visitIndex_params;
1810
+ /**
1811
+ * Visit a parse tree produced by `PostgreSQLParser.index_elem_options`.
1812
+ * @param ctx the parse tree
1813
+ * @return the visitor result
1814
+ */
1815
+ visitIndex_elem_options;
1816
+ /**
1817
+ * Visit a parse tree produced by `PostgreSQLParser.index_elem`.
1818
+ * @param ctx the parse tree
1819
+ * @return the visitor result
1820
+ */
1821
+ visitIndex_elem;
1822
+ /**
1823
+ * Visit a parse tree produced by `PostgreSQLParser.include_`.
1824
+ * @param ctx the parse tree
1825
+ * @return the visitor result
1826
+ */
1827
+ visitInclude_;
1828
+ /**
1829
+ * Visit a parse tree produced by `PostgreSQLParser.index_including_params`.
1830
+ * @param ctx the parse tree
1831
+ * @return the visitor result
1832
+ */
1833
+ visitIndex_including_params;
1834
+ /**
1835
+ * Visit a parse tree produced by `PostgreSQLParser.collate_`.
1836
+ * @param ctx the parse tree
1837
+ * @return the visitor result
1838
+ */
1839
+ visitCollate_;
1840
+ /**
1841
+ * Visit a parse tree produced by `PostgreSQLParser.class_`.
1842
+ * @param ctx the parse tree
1843
+ * @return the visitor result
1844
+ */
1845
+ visitClass_;
1846
+ /**
1847
+ * Visit a parse tree produced by `PostgreSQLParser.asc_desc_`.
1848
+ * @param ctx the parse tree
1849
+ * @return the visitor result
1850
+ */
1851
+ visitAsc_desc_;
1852
+ /**
1853
+ * Visit a parse tree produced by `PostgreSQLParser.nulls_order_`.
1854
+ * @param ctx the parse tree
1855
+ * @return the visitor result
1856
+ */
1857
+ visitNulls_order_;
1858
+ /**
1859
+ * Visit a parse tree produced by `PostgreSQLParser.createfunctionstmt`.
1860
+ * @param ctx the parse tree
1861
+ * @return the visitor result
1862
+ */
1863
+ visitCreatefunctionstmt;
1864
+ /**
1865
+ * Visit a parse tree produced by `PostgreSQLParser.or_replace_`.
1866
+ * @param ctx the parse tree
1867
+ * @return the visitor result
1868
+ */
1869
+ visitOr_replace_;
1870
+ /**
1871
+ * Visit a parse tree produced by `PostgreSQLParser.func_args`.
1872
+ * @param ctx the parse tree
1873
+ * @return the visitor result
1874
+ */
1875
+ visitFunc_args;
1876
+ /**
1877
+ * Visit a parse tree produced by `PostgreSQLParser.func_args_list`.
1878
+ * @param ctx the parse tree
1879
+ * @return the visitor result
1880
+ */
1881
+ visitFunc_args_list;
1882
+ /**
1883
+ * Visit a parse tree produced by `PostgreSQLParser.function_with_argtypes_list`.
1884
+ * @param ctx the parse tree
1885
+ * @return the visitor result
1886
+ */
1887
+ visitFunction_with_argtypes_list;
1888
+ /**
1889
+ * Visit a parse tree produced by `PostgreSQLParser.function_with_argtypes`.
1890
+ * @param ctx the parse tree
1891
+ * @return the visitor result
1892
+ */
1893
+ visitFunction_with_argtypes;
1894
+ /**
1895
+ * Visit a parse tree produced by `PostgreSQLParser.func_args_with_defaults`.
1896
+ * @param ctx the parse tree
1897
+ * @return the visitor result
1898
+ */
1899
+ visitFunc_args_with_defaults;
1900
+ /**
1901
+ * Visit a parse tree produced by `PostgreSQLParser.func_args_with_defaults_list`.
1902
+ * @param ctx the parse tree
1903
+ * @return the visitor result
1904
+ */
1905
+ visitFunc_args_with_defaults_list;
1906
+ /**
1907
+ * Visit a parse tree produced by `PostgreSQLParser.func_arg`.
1908
+ * @param ctx the parse tree
1909
+ * @return the visitor result
1910
+ */
1911
+ visitFunc_arg;
1912
+ /**
1913
+ * Visit a parse tree produced by `PostgreSQLParser.arg_class`.
1914
+ * @param ctx the parse tree
1915
+ * @return the visitor result
1916
+ */
1917
+ visitArg_class;
1918
+ /**
1919
+ * Visit a parse tree produced by `PostgreSQLParser.param_name`.
1920
+ * @param ctx the parse tree
1921
+ * @return the visitor result
1922
+ */
1923
+ visitParam_name;
1924
+ /**
1925
+ * Visit a parse tree produced by `PostgreSQLParser.func_return`.
1926
+ * @param ctx the parse tree
1927
+ * @return the visitor result
1928
+ */
1929
+ visitFunc_return;
1930
+ /**
1931
+ * Visit a parse tree produced by `PostgreSQLParser.func_type`.
1932
+ * @param ctx the parse tree
1933
+ * @return the visitor result
1934
+ */
1935
+ visitFunc_type;
1936
+ /**
1937
+ * Visit a parse tree produced by `PostgreSQLParser.func_arg_with_default`.
1938
+ * @param ctx the parse tree
1939
+ * @return the visitor result
1940
+ */
1941
+ visitFunc_arg_with_default;
1942
+ /**
1943
+ * Visit a parse tree produced by `PostgreSQLParser.aggr_arg`.
1944
+ * @param ctx the parse tree
1945
+ * @return the visitor result
1946
+ */
1947
+ visitAggr_arg;
1948
+ /**
1949
+ * Visit a parse tree produced by `PostgreSQLParser.aggr_args`.
1950
+ * @param ctx the parse tree
1951
+ * @return the visitor result
1952
+ */
1953
+ visitAggr_args;
1954
+ /**
1955
+ * Visit a parse tree produced by `PostgreSQLParser.aggr_args_list`.
1956
+ * @param ctx the parse tree
1957
+ * @return the visitor result
1958
+ */
1959
+ visitAggr_args_list;
1960
+ /**
1961
+ * Visit a parse tree produced by `PostgreSQLParser.aggregate_with_argtypes`.
1962
+ * @param ctx the parse tree
1963
+ * @return the visitor result
1964
+ */
1965
+ visitAggregate_with_argtypes;
1966
+ /**
1967
+ * Visit a parse tree produced by `PostgreSQLParser.aggregate_with_argtypes_list`.
1968
+ * @param ctx the parse tree
1969
+ * @return the visitor result
1970
+ */
1971
+ visitAggregate_with_argtypes_list;
1972
+ /**
1973
+ * Visit a parse tree produced by `PostgreSQLParser.createfunc_opt_list`.
1974
+ * @param ctx the parse tree
1975
+ * @return the visitor result
1976
+ */
1977
+ visitCreatefunc_opt_list;
1978
+ /**
1979
+ * Visit a parse tree produced by `PostgreSQLParser.common_func_opt_item`.
1980
+ * @param ctx the parse tree
1981
+ * @return the visitor result
1982
+ */
1983
+ visitCommon_func_opt_item;
1984
+ /**
1985
+ * Visit a parse tree produced by `PostgreSQLParser.createfunc_opt_item`.
1986
+ * @param ctx the parse tree
1987
+ * @return the visitor result
1988
+ */
1989
+ visitCreatefunc_opt_item;
1990
+ /**
1991
+ * Visit a parse tree produced by `PostgreSQLParser.func_as`.
1992
+ * @param ctx the parse tree
1993
+ * @return the visitor result
1994
+ */
1995
+ visitFunc_as;
1996
+ /**
1997
+ * Visit a parse tree produced by `PostgreSQLParser.transform_type_list`.
1998
+ * @param ctx the parse tree
1999
+ * @return the visitor result
2000
+ */
2001
+ visitTransform_type_list;
2002
+ /**
2003
+ * Visit a parse tree produced by `PostgreSQLParser.definition_`.
2004
+ * @param ctx the parse tree
2005
+ * @return the visitor result
2006
+ */
2007
+ visitDefinition_;
2008
+ /**
2009
+ * Visit a parse tree produced by `PostgreSQLParser.table_func_column`.
2010
+ * @param ctx the parse tree
2011
+ * @return the visitor result
2012
+ */
2013
+ visitTable_func_column;
2014
+ /**
2015
+ * Visit a parse tree produced by `PostgreSQLParser.table_func_column_list`.
2016
+ * @param ctx the parse tree
2017
+ * @return the visitor result
2018
+ */
2019
+ visitTable_func_column_list;
2020
+ /**
2021
+ * Visit a parse tree produced by `PostgreSQLParser.alterfunctionstmt`.
2022
+ * @param ctx the parse tree
2023
+ * @return the visitor result
2024
+ */
2025
+ visitAlterfunctionstmt;
2026
+ /**
2027
+ * Visit a parse tree produced by `PostgreSQLParser.alterfunc_opt_list`.
2028
+ * @param ctx the parse tree
2029
+ * @return the visitor result
2030
+ */
2031
+ visitAlterfunc_opt_list;
2032
+ /**
2033
+ * Visit a parse tree produced by `PostgreSQLParser.restrict_`.
2034
+ * @param ctx the parse tree
2035
+ * @return the visitor result
2036
+ */
2037
+ visitRestrict_;
2038
+ /**
2039
+ * Visit a parse tree produced by `PostgreSQLParser.removefuncstmt`.
2040
+ * @param ctx the parse tree
2041
+ * @return the visitor result
2042
+ */
2043
+ visitRemovefuncstmt;
2044
+ /**
2045
+ * Visit a parse tree produced by `PostgreSQLParser.removeaggrstmt`.
2046
+ * @param ctx the parse tree
2047
+ * @return the visitor result
2048
+ */
2049
+ visitRemoveaggrstmt;
2050
+ /**
2051
+ * Visit a parse tree produced by `PostgreSQLParser.removeoperstmt`.
2052
+ * @param ctx the parse tree
2053
+ * @return the visitor result
2054
+ */
2055
+ visitRemoveoperstmt;
2056
+ /**
2057
+ * Visit a parse tree produced by `PostgreSQLParser.oper_argtypes`.
2058
+ * @param ctx the parse tree
2059
+ * @return the visitor result
2060
+ */
2061
+ visitOper_argtypes;
2062
+ /**
2063
+ * Visit a parse tree produced by `PostgreSQLParser.any_operator`.
2064
+ * @param ctx the parse tree
2065
+ * @return the visitor result
2066
+ */
2067
+ visitAny_operator;
2068
+ /**
2069
+ * Visit a parse tree produced by `PostgreSQLParser.operator_with_argtypes_list`.
2070
+ * @param ctx the parse tree
2071
+ * @return the visitor result
2072
+ */
2073
+ visitOperator_with_argtypes_list;
2074
+ /**
2075
+ * Visit a parse tree produced by `PostgreSQLParser.operator_with_argtypes`.
2076
+ * @param ctx the parse tree
2077
+ * @return the visitor result
2078
+ */
2079
+ visitOperator_with_argtypes;
2080
+ /**
2081
+ * Visit a parse tree produced by `PostgreSQLParser.dostmt`.
2082
+ * @param ctx the parse tree
2083
+ * @return the visitor result
2084
+ */
2085
+ visitDostmt;
2086
+ /**
2087
+ * Visit a parse tree produced by `PostgreSQLParser.dostmt_opt_list`.
2088
+ * @param ctx the parse tree
2089
+ * @return the visitor result
2090
+ */
2091
+ visitDostmt_opt_list;
2092
+ /**
2093
+ * Visit a parse tree produced by `PostgreSQLParser.dostmt_opt_item`.
2094
+ * @param ctx the parse tree
2095
+ * @return the visitor result
2096
+ */
2097
+ visitDostmt_opt_item;
2098
+ /**
2099
+ * Visit a parse tree produced by `PostgreSQLParser.createcaststmt`.
2100
+ * @param ctx the parse tree
2101
+ * @return the visitor result
2102
+ */
2103
+ visitCreatecaststmt;
2104
+ /**
2105
+ * Visit a parse tree produced by `PostgreSQLParser.cast_context`.
2106
+ * @param ctx the parse tree
2107
+ * @return the visitor result
2108
+ */
2109
+ visitCast_context;
2110
+ /**
2111
+ * Visit a parse tree produced by `PostgreSQLParser.dropcaststmt`.
2112
+ * @param ctx the parse tree
2113
+ * @return the visitor result
2114
+ */
2115
+ visitDropcaststmt;
2116
+ /**
2117
+ * Visit a parse tree produced by `PostgreSQLParser.if_exists_`.
2118
+ * @param ctx the parse tree
2119
+ * @return the visitor result
2120
+ */
2121
+ visitIf_exists_;
2122
+ /**
2123
+ * Visit a parse tree produced by `PostgreSQLParser.createtransformstmt`.
2124
+ * @param ctx the parse tree
2125
+ * @return the visitor result
2126
+ */
2127
+ visitCreatetransformstmt;
2128
+ /**
2129
+ * Visit a parse tree produced by `PostgreSQLParser.transform_element_list`.
2130
+ * @param ctx the parse tree
2131
+ * @return the visitor result
2132
+ */
2133
+ visitTransform_element_list;
2134
+ /**
2135
+ * Visit a parse tree produced by `PostgreSQLParser.droptransformstmt`.
2136
+ * @param ctx the parse tree
2137
+ * @return the visitor result
2138
+ */
2139
+ visitDroptransformstmt;
2140
+ /**
2141
+ * Visit a parse tree produced by `PostgreSQLParser.reindexstmt`.
2142
+ * @param ctx the parse tree
2143
+ * @return the visitor result
2144
+ */
2145
+ visitReindexstmt;
2146
+ /**
2147
+ * Visit a parse tree produced by `PostgreSQLParser.reindex_target_relation`.
2148
+ * @param ctx the parse tree
2149
+ * @return the visitor result
2150
+ */
2151
+ visitReindex_target_relation;
2152
+ /**
2153
+ * Visit a parse tree produced by `PostgreSQLParser.reindex_target_all`.
2154
+ * @param ctx the parse tree
2155
+ * @return the visitor result
2156
+ */
2157
+ visitReindex_target_all;
2158
+ /**
2159
+ * Visit a parse tree produced by `PostgreSQLParser.reindex_option_list`.
2160
+ * @param ctx the parse tree
2161
+ * @return the visitor result
2162
+ */
2163
+ visitReindex_option_list;
2164
+ /**
2165
+ * Visit a parse tree produced by `PostgreSQLParser.altertblspcstmt`.
2166
+ * @param ctx the parse tree
2167
+ * @return the visitor result
2168
+ */
2169
+ visitAltertblspcstmt;
2170
+ /**
2171
+ * Visit a parse tree produced by `PostgreSQLParser.renamestmt`.
2172
+ * @param ctx the parse tree
2173
+ * @return the visitor result
2174
+ */
2175
+ visitRenamestmt;
2176
+ /**
2177
+ * Visit a parse tree produced by `PostgreSQLParser.column_`.
2178
+ * @param ctx the parse tree
2179
+ * @return the visitor result
2180
+ */
2181
+ visitColumn_;
2182
+ /**
2183
+ * Visit a parse tree produced by `PostgreSQLParser.set_data_`.
2184
+ * @param ctx the parse tree
2185
+ * @return the visitor result
2186
+ */
2187
+ visitSet_data_;
2188
+ /**
2189
+ * Visit a parse tree produced by `PostgreSQLParser.alterobjectdependsstmt`.
2190
+ * @param ctx the parse tree
2191
+ * @return the visitor result
2192
+ */
2193
+ visitAlterobjectdependsstmt;
2194
+ /**
2195
+ * Visit a parse tree produced by `PostgreSQLParser.no_`.
2196
+ * @param ctx the parse tree
2197
+ * @return the visitor result
2198
+ */
2199
+ visitNo_;
2200
+ /**
2201
+ * Visit a parse tree produced by `PostgreSQLParser.alterobjectschemastmt`.
2202
+ * @param ctx the parse tree
2203
+ * @return the visitor result
2204
+ */
2205
+ visitAlterobjectschemastmt;
2206
+ /**
2207
+ * Visit a parse tree produced by `PostgreSQLParser.alteroperatorstmt`.
2208
+ * @param ctx the parse tree
2209
+ * @return the visitor result
2210
+ */
2211
+ visitAlteroperatorstmt;
2212
+ /**
2213
+ * Visit a parse tree produced by `PostgreSQLParser.operator_def_list`.
2214
+ * @param ctx the parse tree
2215
+ * @return the visitor result
2216
+ */
2217
+ visitOperator_def_list;
2218
+ /**
2219
+ * Visit a parse tree produced by `PostgreSQLParser.operator_def_elem`.
2220
+ * @param ctx the parse tree
2221
+ * @return the visitor result
2222
+ */
2223
+ visitOperator_def_elem;
2224
+ /**
2225
+ * Visit a parse tree produced by `PostgreSQLParser.operator_def_arg`.
2226
+ * @param ctx the parse tree
2227
+ * @return the visitor result
2228
+ */
2229
+ visitOperator_def_arg;
2230
+ /**
2231
+ * Visit a parse tree produced by `PostgreSQLParser.altertypestmt`.
2232
+ * @param ctx the parse tree
2233
+ * @return the visitor result
2234
+ */
2235
+ visitAltertypestmt;
2236
+ /**
2237
+ * Visit a parse tree produced by `PostgreSQLParser.alterownerstmt`.
2238
+ * @param ctx the parse tree
2239
+ * @return the visitor result
2240
+ */
2241
+ visitAlterownerstmt;
2242
+ /**
2243
+ * Visit a parse tree produced by `PostgreSQLParser.createpublicationstmt`.
2244
+ * @param ctx the parse tree
2245
+ * @return the visitor result
2246
+ */
2247
+ visitCreatepublicationstmt;
2248
+ /**
2249
+ * Visit a parse tree produced by `PostgreSQLParser.publication_for_tables_`.
2250
+ * @param ctx the parse tree
2251
+ * @return the visitor result
2252
+ */
2253
+ visitPublication_for_tables_;
2254
+ /**
2255
+ * Visit a parse tree produced by `PostgreSQLParser.publication_for_tables`.
2256
+ * @param ctx the parse tree
2257
+ * @return the visitor result
2258
+ */
2259
+ visitPublication_for_tables;
2260
+ /**
2261
+ * Visit a parse tree produced by `PostgreSQLParser.alterpublicationstmt`.
2262
+ * @param ctx the parse tree
2263
+ * @return the visitor result
2264
+ */
2265
+ visitAlterpublicationstmt;
2266
+ /**
2267
+ * Visit a parse tree produced by `PostgreSQLParser.createsubscriptionstmt`.
2268
+ * @param ctx the parse tree
2269
+ * @return the visitor result
2270
+ */
2271
+ visitCreatesubscriptionstmt;
2272
+ /**
2273
+ * Visit a parse tree produced by `PostgreSQLParser.publication_name_list`.
2274
+ * @param ctx the parse tree
2275
+ * @return the visitor result
2276
+ */
2277
+ visitPublication_name_list;
2278
+ /**
2279
+ * Visit a parse tree produced by `PostgreSQLParser.publication_name_item`.
2280
+ * @param ctx the parse tree
2281
+ * @return the visitor result
2282
+ */
2283
+ visitPublication_name_item;
2284
+ /**
2285
+ * Visit a parse tree produced by `PostgreSQLParser.altersubscriptionstmt`.
2286
+ * @param ctx the parse tree
2287
+ * @return the visitor result
2288
+ */
2289
+ visitAltersubscriptionstmt;
2290
+ /**
2291
+ * Visit a parse tree produced by `PostgreSQLParser.dropsubscriptionstmt`.
2292
+ * @param ctx the parse tree
2293
+ * @return the visitor result
2294
+ */
2295
+ visitDropsubscriptionstmt;
2296
+ /**
2297
+ * Visit a parse tree produced by `PostgreSQLParser.rulestmt`.
2298
+ * @param ctx the parse tree
2299
+ * @return the visitor result
2300
+ */
2301
+ visitRulestmt;
2302
+ /**
2303
+ * Visit a parse tree produced by `PostgreSQLParser.ruleactionlist`.
2304
+ * @param ctx the parse tree
2305
+ * @return the visitor result
2306
+ */
2307
+ visitRuleactionlist;
2308
+ /**
2309
+ * Visit a parse tree produced by `PostgreSQLParser.ruleactionmulti`.
2310
+ * @param ctx the parse tree
2311
+ * @return the visitor result
2312
+ */
2313
+ visitRuleactionmulti;
2314
+ /**
2315
+ * Visit a parse tree produced by `PostgreSQLParser.ruleactionstmt`.
2316
+ * @param ctx the parse tree
2317
+ * @return the visitor result
2318
+ */
2319
+ visitRuleactionstmt;
2320
+ /**
2321
+ * Visit a parse tree produced by `PostgreSQLParser.ruleactionstmtOrEmpty`.
2322
+ * @param ctx the parse tree
2323
+ * @return the visitor result
2324
+ */
2325
+ visitRuleactionstmtOrEmpty;
2326
+ /**
2327
+ * Visit a parse tree produced by `PostgreSQLParser.event`.
2328
+ * @param ctx the parse tree
2329
+ * @return the visitor result
2330
+ */
2331
+ visitEvent;
2332
+ /**
2333
+ * Visit a parse tree produced by `PostgreSQLParser.instead_`.
2334
+ * @param ctx the parse tree
2335
+ * @return the visitor result
2336
+ */
2337
+ visitInstead_;
2338
+ /**
2339
+ * Visit a parse tree produced by `PostgreSQLParser.notifystmt`.
2340
+ * @param ctx the parse tree
2341
+ * @return the visitor result
2342
+ */
2343
+ visitNotifystmt;
2344
+ /**
2345
+ * Visit a parse tree produced by `PostgreSQLParser.notify_payload`.
2346
+ * @param ctx the parse tree
2347
+ * @return the visitor result
2348
+ */
2349
+ visitNotify_payload;
2350
+ /**
2351
+ * Visit a parse tree produced by `PostgreSQLParser.listenstmt`.
2352
+ * @param ctx the parse tree
2353
+ * @return the visitor result
2354
+ */
2355
+ visitListenstmt;
2356
+ /**
2357
+ * Visit a parse tree produced by `PostgreSQLParser.unlistenstmt`.
2358
+ * @param ctx the parse tree
2359
+ * @return the visitor result
2360
+ */
2361
+ visitUnlistenstmt;
2362
+ /**
2363
+ * Visit a parse tree produced by `PostgreSQLParser.transactionstmt`.
2364
+ * @param ctx the parse tree
2365
+ * @return the visitor result
2366
+ */
2367
+ visitTransactionstmt;
2368
+ /**
2369
+ * Visit a parse tree produced by `PostgreSQLParser.transaction_`.
2370
+ * @param ctx the parse tree
2371
+ * @return the visitor result
2372
+ */
2373
+ visitTransaction_;
2374
+ /**
2375
+ * Visit a parse tree produced by `PostgreSQLParser.transaction_mode_item`.
2376
+ * @param ctx the parse tree
2377
+ * @return the visitor result
2378
+ */
2379
+ visitTransaction_mode_item;
2380
+ /**
2381
+ * Visit a parse tree produced by `PostgreSQLParser.transaction_mode_list`.
2382
+ * @param ctx the parse tree
2383
+ * @return the visitor result
2384
+ */
2385
+ visitTransaction_mode_list;
2386
+ /**
2387
+ * Visit a parse tree produced by `PostgreSQLParser.transaction_mode_list_or_empty`.
2388
+ * @param ctx the parse tree
2389
+ * @return the visitor result
2390
+ */
2391
+ visitTransaction_mode_list_or_empty;
2392
+ /**
2393
+ * Visit a parse tree produced by `PostgreSQLParser.transaction_chain_`.
2394
+ * @param ctx the parse tree
2395
+ * @return the visitor result
2396
+ */
2397
+ visitTransaction_chain_;
2398
+ /**
2399
+ * Visit a parse tree produced by `PostgreSQLParser.viewstmt`.
2400
+ * @param ctx the parse tree
2401
+ * @return the visitor result
2402
+ */
2403
+ visitViewstmt;
2404
+ /**
2405
+ * Visit a parse tree produced by `PostgreSQLParser.check_option_`.
2406
+ * @param ctx the parse tree
2407
+ * @return the visitor result
2408
+ */
2409
+ visitCheck_option_;
2410
+ /**
2411
+ * Visit a parse tree produced by `PostgreSQLParser.loadstmt`.
2412
+ * @param ctx the parse tree
2413
+ * @return the visitor result
2414
+ */
2415
+ visitLoadstmt;
2416
+ /**
2417
+ * Visit a parse tree produced by `PostgreSQLParser.createdbstmt`.
2418
+ * @param ctx the parse tree
2419
+ * @return the visitor result
2420
+ */
2421
+ visitCreatedbstmt;
2422
+ /**
2423
+ * Visit a parse tree produced by `PostgreSQLParser.createdb_opt_list`.
2424
+ * @param ctx the parse tree
2425
+ * @return the visitor result
2426
+ */
2427
+ visitCreatedb_opt_list;
2428
+ /**
2429
+ * Visit a parse tree produced by `PostgreSQLParser.createdb_opt_items`.
2430
+ * @param ctx the parse tree
2431
+ * @return the visitor result
2432
+ */
2433
+ visitCreatedb_opt_items;
2434
+ /**
2435
+ * Visit a parse tree produced by `PostgreSQLParser.createdb_opt_item`.
2436
+ * @param ctx the parse tree
2437
+ * @return the visitor result
2438
+ */
2439
+ visitCreatedb_opt_item;
2440
+ /**
2441
+ * Visit a parse tree produced by `PostgreSQLParser.createdb_opt_name`.
2442
+ * @param ctx the parse tree
2443
+ * @return the visitor result
2444
+ */
2445
+ visitCreatedb_opt_name;
2446
+ /**
2447
+ * Visit a parse tree produced by `PostgreSQLParser.equal_`.
2448
+ * @param ctx the parse tree
2449
+ * @return the visitor result
2450
+ */
2451
+ visitEqual_;
2452
+ /**
2453
+ * Visit a parse tree produced by `PostgreSQLParser.alterdatabasestmt`.
2454
+ * @param ctx the parse tree
2455
+ * @return the visitor result
2456
+ */
2457
+ visitAlterdatabasestmt;
2458
+ /**
2459
+ * Visit a parse tree produced by `PostgreSQLParser.alterdatabasesetstmt`.
2460
+ * @param ctx the parse tree
2461
+ * @return the visitor result
2462
+ */
2463
+ visitAlterdatabasesetstmt;
2464
+ /**
2465
+ * Visit a parse tree produced by `PostgreSQLParser.dropdbstmt`.
2466
+ * @param ctx the parse tree
2467
+ * @return the visitor result
2468
+ */
2469
+ visitDropdbstmt;
2470
+ /**
2471
+ * Visit a parse tree produced by `PostgreSQLParser.drop_option_list`.
2472
+ * @param ctx the parse tree
2473
+ * @return the visitor result
2474
+ */
2475
+ visitDrop_option_list;
2476
+ /**
2477
+ * Visit a parse tree produced by `PostgreSQLParser.drop_option`.
2478
+ * @param ctx the parse tree
2479
+ * @return the visitor result
2480
+ */
2481
+ visitDrop_option;
2482
+ /**
2483
+ * Visit a parse tree produced by `PostgreSQLParser.altercollationstmt`.
2484
+ * @param ctx the parse tree
2485
+ * @return the visitor result
2486
+ */
2487
+ visitAltercollationstmt;
2488
+ /**
2489
+ * Visit a parse tree produced by `PostgreSQLParser.altersystemstmt`.
2490
+ * @param ctx the parse tree
2491
+ * @return the visitor result
2492
+ */
2493
+ visitAltersystemstmt;
2494
+ /**
2495
+ * Visit a parse tree produced by `PostgreSQLParser.createdomainstmt`.
2496
+ * @param ctx the parse tree
2497
+ * @return the visitor result
2498
+ */
2499
+ visitCreatedomainstmt;
2500
+ /**
2501
+ * Visit a parse tree produced by `PostgreSQLParser.alterdomainstmt`.
2502
+ * @param ctx the parse tree
2503
+ * @return the visitor result
2504
+ */
2505
+ visitAlterdomainstmt;
2506
+ /**
2507
+ * Visit a parse tree produced by `PostgreSQLParser.as_`.
2508
+ * @param ctx the parse tree
2509
+ * @return the visitor result
2510
+ */
2511
+ visitAs_;
2512
+ /**
2513
+ * Visit a parse tree produced by `PostgreSQLParser.altertsdictionarystmt`.
2514
+ * @param ctx the parse tree
2515
+ * @return the visitor result
2516
+ */
2517
+ visitAltertsdictionarystmt;
2518
+ /**
2519
+ * Visit a parse tree produced by `PostgreSQLParser.altertsconfigurationstmt`.
2520
+ * @param ctx the parse tree
2521
+ * @return the visitor result
2522
+ */
2523
+ visitAltertsconfigurationstmt;
2524
+ /**
2525
+ * Visit a parse tree produced by `PostgreSQLParser.any_with`.
2526
+ * @param ctx the parse tree
2527
+ * @return the visitor result
2528
+ */
2529
+ visitAny_with;
2530
+ /**
2531
+ * Visit a parse tree produced by `PostgreSQLParser.createconversionstmt`.
2532
+ * @param ctx the parse tree
2533
+ * @return the visitor result
2534
+ */
2535
+ visitCreateconversionstmt;
2536
+ /**
2537
+ * Visit a parse tree produced by `PostgreSQLParser.clusterstmt`.
2538
+ * @param ctx the parse tree
2539
+ * @return the visitor result
2540
+ */
2541
+ visitClusterstmt;
2542
+ /**
2543
+ * Visit a parse tree produced by `PostgreSQLParser.cluster_index_specification`.
2544
+ * @param ctx the parse tree
2545
+ * @return the visitor result
2546
+ */
2547
+ visitCluster_index_specification;
2548
+ /**
2549
+ * Visit a parse tree produced by `PostgreSQLParser.vacuumstmt`.
2550
+ * @param ctx the parse tree
2551
+ * @return the visitor result
2552
+ */
2553
+ visitVacuumstmt;
2554
+ /**
2555
+ * Visit a parse tree produced by `PostgreSQLParser.analyzestmt`.
2556
+ * @param ctx the parse tree
2557
+ * @return the visitor result
2558
+ */
2559
+ visitAnalyzestmt;
2560
+ /**
2561
+ * Visit a parse tree produced by `PostgreSQLParser.utility_option_list`.
2562
+ * @param ctx the parse tree
2563
+ * @return the visitor result
2564
+ */
2565
+ visitUtility_option_list;
2566
+ /**
2567
+ * Visit a parse tree produced by `PostgreSQLParser.vac_analyze_option_list`.
2568
+ * @param ctx the parse tree
2569
+ * @return the visitor result
2570
+ */
2571
+ visitVac_analyze_option_list;
2572
+ /**
2573
+ * Visit a parse tree produced by `PostgreSQLParser.analyze_keyword`.
2574
+ * @param ctx the parse tree
2575
+ * @return the visitor result
2576
+ */
2577
+ visitAnalyze_keyword;
2578
+ /**
2579
+ * Visit a parse tree produced by `PostgreSQLParser.utility_option_elem`.
2580
+ * @param ctx the parse tree
2581
+ * @return the visitor result
2582
+ */
2583
+ visitUtility_option_elem;
2584
+ /**
2585
+ * Visit a parse tree produced by `PostgreSQLParser.utility_option_name`.
2586
+ * @param ctx the parse tree
2587
+ * @return the visitor result
2588
+ */
2589
+ visitUtility_option_name;
2590
+ /**
2591
+ * Visit a parse tree produced by `PostgreSQLParser.utility_option_arg`.
2592
+ * @param ctx the parse tree
2593
+ * @return the visitor result
2594
+ */
2595
+ visitUtility_option_arg;
2596
+ /**
2597
+ * Visit a parse tree produced by `PostgreSQLParser.vac_analyze_option_elem`.
2598
+ * @param ctx the parse tree
2599
+ * @return the visitor result
2600
+ */
2601
+ visitVac_analyze_option_elem;
2602
+ /**
2603
+ * Visit a parse tree produced by `PostgreSQLParser.vac_analyze_option_name`.
2604
+ * @param ctx the parse tree
2605
+ * @return the visitor result
2606
+ */
2607
+ visitVac_analyze_option_name;
2608
+ /**
2609
+ * Visit a parse tree produced by `PostgreSQLParser.vac_analyze_option_arg`.
2610
+ * @param ctx the parse tree
2611
+ * @return the visitor result
2612
+ */
2613
+ visitVac_analyze_option_arg;
2614
+ /**
2615
+ * Visit a parse tree produced by `PostgreSQLParser.analyze_`.
2616
+ * @param ctx the parse tree
2617
+ * @return the visitor result
2618
+ */
2619
+ visitAnalyze_;
2620
+ /**
2621
+ * Visit a parse tree produced by `PostgreSQLParser.verbose_`.
2622
+ * @param ctx the parse tree
2623
+ * @return the visitor result
2624
+ */
2625
+ visitVerbose_;
2626
+ /**
2627
+ * Visit a parse tree produced by `PostgreSQLParser.full_`.
2628
+ * @param ctx the parse tree
2629
+ * @return the visitor result
2630
+ */
2631
+ visitFull_;
2632
+ /**
2633
+ * Visit a parse tree produced by `PostgreSQLParser.freeze_`.
2634
+ * @param ctx the parse tree
2635
+ * @return the visitor result
2636
+ */
2637
+ visitFreeze_;
2638
+ /**
2639
+ * Visit a parse tree produced by `PostgreSQLParser.name_list_`.
2640
+ * @param ctx the parse tree
2641
+ * @return the visitor result
2642
+ */
2643
+ visitName_list_;
2644
+ /**
2645
+ * Visit a parse tree produced by `PostgreSQLParser.vacuum_relation`.
2646
+ * @param ctx the parse tree
2647
+ * @return the visitor result
2648
+ */
2649
+ visitVacuum_relation;
2650
+ /**
2651
+ * Visit a parse tree produced by `PostgreSQLParser.vacuum_relation_list`.
2652
+ * @param ctx the parse tree
2653
+ * @return the visitor result
2654
+ */
2655
+ visitVacuum_relation_list;
2656
+ /**
2657
+ * Visit a parse tree produced by `PostgreSQLParser.vacuum_relation_list_`.
2658
+ * @param ctx the parse tree
2659
+ * @return the visitor result
2660
+ */
2661
+ visitVacuum_relation_list_;
2662
+ /**
2663
+ * Visit a parse tree produced by `PostgreSQLParser.explainstmt`.
2664
+ * @param ctx the parse tree
2665
+ * @return the visitor result
2666
+ */
2667
+ visitExplainstmt;
2668
+ /**
2669
+ * Visit a parse tree produced by `PostgreSQLParser.explainablestmt`.
2670
+ * @param ctx the parse tree
2671
+ * @return the visitor result
2672
+ */
2673
+ visitExplainablestmt;
2674
+ /**
2675
+ * Visit a parse tree produced by `PostgreSQLParser.explain_option_list`.
2676
+ * @param ctx the parse tree
2677
+ * @return the visitor result
2678
+ */
2679
+ visitExplain_option_list;
2680
+ /**
2681
+ * Visit a parse tree produced by `PostgreSQLParser.explain_option_elem`.
2682
+ * @param ctx the parse tree
2683
+ * @return the visitor result
2684
+ */
2685
+ visitExplain_option_elem;
2686
+ /**
2687
+ * Visit a parse tree produced by `PostgreSQLParser.explain_option_name`.
2688
+ * @param ctx the parse tree
2689
+ * @return the visitor result
2690
+ */
2691
+ visitExplain_option_name;
2692
+ /**
2693
+ * Visit a parse tree produced by `PostgreSQLParser.explain_option_arg`.
2694
+ * @param ctx the parse tree
2695
+ * @return the visitor result
2696
+ */
2697
+ visitExplain_option_arg;
2698
+ /**
2699
+ * Visit a parse tree produced by `PostgreSQLParser.preparestmt`.
2700
+ * @param ctx the parse tree
2701
+ * @return the visitor result
2702
+ */
2703
+ visitPreparestmt;
2704
+ /**
2705
+ * Visit a parse tree produced by `PostgreSQLParser.prep_type_clause`.
2706
+ * @param ctx the parse tree
2707
+ * @return the visitor result
2708
+ */
2709
+ visitPrep_type_clause;
2710
+ /**
2711
+ * Visit a parse tree produced by `PostgreSQLParser.preparablestmt`.
2712
+ * @param ctx the parse tree
2713
+ * @return the visitor result
2714
+ */
2715
+ visitPreparablestmt;
2716
+ /**
2717
+ * Visit a parse tree produced by `PostgreSQLParser.executestmt`.
2718
+ * @param ctx the parse tree
2719
+ * @return the visitor result
2720
+ */
2721
+ visitExecutestmt;
2722
+ /**
2723
+ * Visit a parse tree produced by `PostgreSQLParser.execute_param_clause`.
2724
+ * @param ctx the parse tree
2725
+ * @return the visitor result
2726
+ */
2727
+ visitExecute_param_clause;
2728
+ /**
2729
+ * Visit a parse tree produced by `PostgreSQLParser.deallocatestmt`.
2730
+ * @param ctx the parse tree
2731
+ * @return the visitor result
2732
+ */
2733
+ visitDeallocatestmt;
2734
+ /**
2735
+ * Visit a parse tree produced by `PostgreSQLParser.insertstmt`.
2736
+ * @param ctx the parse tree
2737
+ * @return the visitor result
2738
+ */
2739
+ visitInsertstmt;
2740
+ /**
2741
+ * Visit a parse tree produced by `PostgreSQLParser.insert_target`.
2742
+ * @param ctx the parse tree
2743
+ * @return the visitor result
2744
+ */
2745
+ visitInsert_target;
2746
+ /**
2747
+ * Visit a parse tree produced by `PostgreSQLParser.insert_rest`.
2748
+ * @param ctx the parse tree
2749
+ * @return the visitor result
2750
+ */
2751
+ visitInsert_rest;
2752
+ /**
2753
+ * Visit a parse tree produced by `PostgreSQLParser.override_kind`.
2754
+ * @param ctx the parse tree
2755
+ * @return the visitor result
2756
+ */
2757
+ visitOverride_kind;
2758
+ /**
2759
+ * Visit a parse tree produced by `PostgreSQLParser.insert_column_list`.
2760
+ * @param ctx the parse tree
2761
+ * @return the visitor result
2762
+ */
2763
+ visitInsert_column_list;
2764
+ /**
2765
+ * Visit a parse tree produced by `PostgreSQLParser.insert_column_item`.
2766
+ * @param ctx the parse tree
2767
+ * @return the visitor result
2768
+ */
2769
+ visitInsert_column_item;
2770
+ /**
2771
+ * Visit a parse tree produced by `PostgreSQLParser.on_conflict_`.
2772
+ * @param ctx the parse tree
2773
+ * @return the visitor result
2774
+ */
2775
+ visitOn_conflict_;
2776
+ /**
2777
+ * Visit a parse tree produced by `PostgreSQLParser.conf_expr_`.
2778
+ * @param ctx the parse tree
2779
+ * @return the visitor result
2780
+ */
2781
+ visitConf_expr_;
2782
+ /**
2783
+ * Visit a parse tree produced by `PostgreSQLParser.returning_clause`.
2784
+ * @param ctx the parse tree
2785
+ * @return the visitor result
2786
+ */
2787
+ visitReturning_clause;
2788
+ /**
2789
+ * Visit a parse tree produced by `PostgreSQLParser.mergestmt`.
2790
+ * @param ctx the parse tree
2791
+ * @return the visitor result
2792
+ */
2793
+ visitMergestmt;
2794
+ /**
2795
+ * Visit a parse tree produced by `PostgreSQLParser.merge_insert_clause`.
2796
+ * @param ctx the parse tree
2797
+ * @return the visitor result
2798
+ */
2799
+ visitMerge_insert_clause;
2800
+ /**
2801
+ * Visit a parse tree produced by `PostgreSQLParser.merge_update_clause`.
2802
+ * @param ctx the parse tree
2803
+ * @return the visitor result
2804
+ */
2805
+ visitMerge_update_clause;
2806
+ /**
2807
+ * Visit a parse tree produced by `PostgreSQLParser.merge_delete_clause`.
2808
+ * @param ctx the parse tree
2809
+ * @return the visitor result
2810
+ */
2811
+ visitMerge_delete_clause;
2812
+ /**
2813
+ * Visit a parse tree produced by `PostgreSQLParser.deletestmt`.
2814
+ * @param ctx the parse tree
2815
+ * @return the visitor result
2816
+ */
2817
+ visitDeletestmt;
2818
+ /**
2819
+ * Visit a parse tree produced by `PostgreSQLParser.using_clause`.
2820
+ * @param ctx the parse tree
2821
+ * @return the visitor result
2822
+ */
2823
+ visitUsing_clause;
2824
+ /**
2825
+ * Visit a parse tree produced by `PostgreSQLParser.lockstmt`.
2826
+ * @param ctx the parse tree
2827
+ * @return the visitor result
2828
+ */
2829
+ visitLockstmt;
2830
+ /**
2831
+ * Visit a parse tree produced by `PostgreSQLParser.lock_`.
2832
+ * @param ctx the parse tree
2833
+ * @return the visitor result
2834
+ */
2835
+ visitLock_;
2836
+ /**
2837
+ * Visit a parse tree produced by `PostgreSQLParser.lock_type`.
2838
+ * @param ctx the parse tree
2839
+ * @return the visitor result
2840
+ */
2841
+ visitLock_type;
2842
+ /**
2843
+ * Visit a parse tree produced by `PostgreSQLParser.nowait_`.
2844
+ * @param ctx the parse tree
2845
+ * @return the visitor result
2846
+ */
2847
+ visitNowait_;
2848
+ /**
2849
+ * Visit a parse tree produced by `PostgreSQLParser.nowait_or_skip_`.
2850
+ * @param ctx the parse tree
2851
+ * @return the visitor result
2852
+ */
2853
+ visitNowait_or_skip_;
2854
+ /**
2855
+ * Visit a parse tree produced by `PostgreSQLParser.updatestmt`.
2856
+ * @param ctx the parse tree
2857
+ * @return the visitor result
2858
+ */
2859
+ visitUpdatestmt;
2860
+ /**
2861
+ * Visit a parse tree produced by `PostgreSQLParser.set_clause_list`.
2862
+ * @param ctx the parse tree
2863
+ * @return the visitor result
2864
+ */
2865
+ visitSet_clause_list;
2866
+ /**
2867
+ * Visit a parse tree produced by `PostgreSQLParser.set_clause`.
2868
+ * @param ctx the parse tree
2869
+ * @return the visitor result
2870
+ */
2871
+ visitSet_clause;
2872
+ /**
2873
+ * Visit a parse tree produced by `PostgreSQLParser.set_target`.
2874
+ * @param ctx the parse tree
2875
+ * @return the visitor result
2876
+ */
2877
+ visitSet_target;
2878
+ /**
2879
+ * Visit a parse tree produced by `PostgreSQLParser.set_target_list`.
2880
+ * @param ctx the parse tree
2881
+ * @return the visitor result
2882
+ */
2883
+ visitSet_target_list;
2884
+ /**
2885
+ * Visit a parse tree produced by `PostgreSQLParser.declarecursorstmt`.
2886
+ * @param ctx the parse tree
2887
+ * @return the visitor result
2888
+ */
2889
+ visitDeclarecursorstmt;
2890
+ /**
2891
+ * Visit a parse tree produced by `PostgreSQLParser.cursor_name`.
2892
+ * @param ctx the parse tree
2893
+ * @return the visitor result
2894
+ */
2895
+ visitCursor_name;
2896
+ /**
2897
+ * Visit a parse tree produced by `PostgreSQLParser.cursor_options`.
2898
+ * @param ctx the parse tree
2899
+ * @return the visitor result
2900
+ */
2901
+ visitCursor_options;
2902
+ /**
2903
+ * Visit a parse tree produced by `PostgreSQLParser.hold_`.
2904
+ * @param ctx the parse tree
2905
+ * @return the visitor result
2906
+ */
2907
+ visitHold_;
2908
+ /**
2909
+ * Visit a parse tree produced by `PostgreSQLParser.selectstmt`.
2910
+ * @param ctx the parse tree
2911
+ * @return the visitor result
2912
+ */
2913
+ visitSelectstmt;
2914
+ /**
2915
+ * Visit a parse tree produced by `PostgreSQLParser.select_with_parens`.
2916
+ * @param ctx the parse tree
2917
+ * @return the visitor result
2918
+ */
2919
+ visitSelect_with_parens;
2920
+ /**
2921
+ * Visit a parse tree produced by `PostgreSQLParser.select_no_parens`.
2922
+ * @param ctx the parse tree
2923
+ * @return the visitor result
2924
+ */
2925
+ visitSelect_no_parens;
2926
+ /**
2927
+ * Visit a parse tree produced by `PostgreSQLParser.select_clause`.
2928
+ * @param ctx the parse tree
2929
+ * @return the visitor result
2930
+ */
2931
+ visitSelect_clause;
2932
+ /**
2933
+ * Visit a parse tree produced by `PostgreSQLParser.simple_select_intersect`.
2934
+ * @param ctx the parse tree
2935
+ * @return the visitor result
2936
+ */
2937
+ visitSimple_select_intersect;
2938
+ /**
2939
+ * Visit a parse tree produced by `PostgreSQLParser.simple_select_pramary`.
2940
+ * @param ctx the parse tree
2941
+ * @return the visitor result
2942
+ */
2943
+ visitSimple_select_pramary;
2944
+ /**
2945
+ * Visit a parse tree produced by `PostgreSQLParser.with_clause`.
2946
+ * @param ctx the parse tree
2947
+ * @return the visitor result
2948
+ */
2949
+ visitWith_clause;
2950
+ /**
2951
+ * Visit a parse tree produced by `PostgreSQLParser.cte_list`.
2952
+ * @param ctx the parse tree
2953
+ * @return the visitor result
2954
+ */
2955
+ visitCte_list;
2956
+ /**
2957
+ * Visit a parse tree produced by `PostgreSQLParser.common_table_expr`.
2958
+ * @param ctx the parse tree
2959
+ * @return the visitor result
2960
+ */
2961
+ visitCommon_table_expr;
2962
+ /**
2963
+ * Visit a parse tree produced by `PostgreSQLParser.materialized_`.
2964
+ * @param ctx the parse tree
2965
+ * @return the visitor result
2966
+ */
2967
+ visitMaterialized_;
2968
+ /**
2969
+ * Visit a parse tree produced by `PostgreSQLParser.with_clause_`.
2970
+ * @param ctx the parse tree
2971
+ * @return the visitor result
2972
+ */
2973
+ visitWith_clause_;
2974
+ /**
2975
+ * Visit a parse tree produced by `PostgreSQLParser.into_clause`.
2976
+ * @param ctx the parse tree
2977
+ * @return the visitor result
2978
+ */
2979
+ visitInto_clause;
2980
+ /**
2981
+ * Visit a parse tree produced by `PostgreSQLParser.strict_`.
2982
+ * @param ctx the parse tree
2983
+ * @return the visitor result
2984
+ */
2985
+ visitStrict_;
2986
+ /**
2987
+ * Visit a parse tree produced by `PostgreSQLParser.opttempTableName`.
2988
+ * @param ctx the parse tree
2989
+ * @return the visitor result
2990
+ */
2991
+ visitOpttempTableName;
2992
+ /**
2993
+ * Visit a parse tree produced by `PostgreSQLParser.table_`.
2994
+ * @param ctx the parse tree
2995
+ * @return the visitor result
2996
+ */
2997
+ visitTable_;
2998
+ /**
2999
+ * Visit a parse tree produced by `PostgreSQLParser.all_or_distinct`.
3000
+ * @param ctx the parse tree
3001
+ * @return the visitor result
3002
+ */
3003
+ visitAll_or_distinct;
3004
+ /**
3005
+ * Visit a parse tree produced by `PostgreSQLParser.distinct_clause`.
3006
+ * @param ctx the parse tree
3007
+ * @return the visitor result
3008
+ */
3009
+ visitDistinct_clause;
3010
+ /**
3011
+ * Visit a parse tree produced by `PostgreSQLParser.all_clause_`.
3012
+ * @param ctx the parse tree
3013
+ * @return the visitor result
3014
+ */
3015
+ visitAll_clause_;
3016
+ /**
3017
+ * Visit a parse tree produced by `PostgreSQLParser.sort_clause_`.
3018
+ * @param ctx the parse tree
3019
+ * @return the visitor result
3020
+ */
3021
+ visitSort_clause_;
3022
+ /**
3023
+ * Visit a parse tree produced by `PostgreSQLParser.sort_clause`.
3024
+ * @param ctx the parse tree
3025
+ * @return the visitor result
3026
+ */
3027
+ visitSort_clause;
3028
+ /**
3029
+ * Visit a parse tree produced by `PostgreSQLParser.sortby_list`.
3030
+ * @param ctx the parse tree
3031
+ * @return the visitor result
3032
+ */
3033
+ visitSortby_list;
3034
+ /**
3035
+ * Visit a parse tree produced by `PostgreSQLParser.sortby`.
3036
+ * @param ctx the parse tree
3037
+ * @return the visitor result
3038
+ */
3039
+ visitSortby;
3040
+ /**
3041
+ * Visit a parse tree produced by `PostgreSQLParser.select_limit`.
3042
+ * @param ctx the parse tree
3043
+ * @return the visitor result
3044
+ */
3045
+ visitSelect_limit;
3046
+ /**
3047
+ * Visit a parse tree produced by `PostgreSQLParser.select_limit_`.
3048
+ * @param ctx the parse tree
3049
+ * @return the visitor result
3050
+ */
3051
+ visitSelect_limit_;
3052
+ /**
3053
+ * Visit a parse tree produced by `PostgreSQLParser.limit_clause`.
3054
+ * @param ctx the parse tree
3055
+ * @return the visitor result
3056
+ */
3057
+ visitLimit_clause;
3058
+ /**
3059
+ * Visit a parse tree produced by `PostgreSQLParser.offset_clause`.
3060
+ * @param ctx the parse tree
3061
+ * @return the visitor result
3062
+ */
3063
+ visitOffset_clause;
3064
+ /**
3065
+ * Visit a parse tree produced by `PostgreSQLParser.select_limit_value`.
3066
+ * @param ctx the parse tree
3067
+ * @return the visitor result
3068
+ */
3069
+ visitSelect_limit_value;
3070
+ /**
3071
+ * Visit a parse tree produced by `PostgreSQLParser.select_offset_value`.
3072
+ * @param ctx the parse tree
3073
+ * @return the visitor result
3074
+ */
3075
+ visitSelect_offset_value;
3076
+ /**
3077
+ * Visit a parse tree produced by `PostgreSQLParser.select_fetch_first_value`.
3078
+ * @param ctx the parse tree
3079
+ * @return the visitor result
3080
+ */
3081
+ visitSelect_fetch_first_value;
3082
+ /**
3083
+ * Visit a parse tree produced by `PostgreSQLParser.i_or_f_const`.
3084
+ * @param ctx the parse tree
3085
+ * @return the visitor result
3086
+ */
3087
+ visitI_or_f_const;
3088
+ /**
3089
+ * Visit a parse tree produced by `PostgreSQLParser.row_or_rows`.
3090
+ * @param ctx the parse tree
3091
+ * @return the visitor result
3092
+ */
3093
+ visitRow_or_rows;
3094
+ /**
3095
+ * Visit a parse tree produced by `PostgreSQLParser.first_or_next`.
3096
+ * @param ctx the parse tree
3097
+ * @return the visitor result
3098
+ */
3099
+ visitFirst_or_next;
3100
+ /**
3101
+ * Visit a parse tree produced by `PostgreSQLParser.group_clause`.
3102
+ * @param ctx the parse tree
3103
+ * @return the visitor result
3104
+ */
3105
+ visitGroup_clause;
3106
+ /**
3107
+ * Visit a parse tree produced by `PostgreSQLParser.group_by_list`.
3108
+ * @param ctx the parse tree
3109
+ * @return the visitor result
3110
+ */
3111
+ visitGroup_by_list;
3112
+ /**
3113
+ * Visit a parse tree produced by `PostgreSQLParser.group_by_item`.
3114
+ * @param ctx the parse tree
3115
+ * @return the visitor result
3116
+ */
3117
+ visitGroup_by_item;
3118
+ /**
3119
+ * Visit a parse tree produced by `PostgreSQLParser.empty_grouping_set`.
3120
+ * @param ctx the parse tree
3121
+ * @return the visitor result
3122
+ */
3123
+ visitEmpty_grouping_set;
3124
+ /**
3125
+ * Visit a parse tree produced by `PostgreSQLParser.rollup_clause`.
3126
+ * @param ctx the parse tree
3127
+ * @return the visitor result
3128
+ */
3129
+ visitRollup_clause;
3130
+ /**
3131
+ * Visit a parse tree produced by `PostgreSQLParser.cube_clause`.
3132
+ * @param ctx the parse tree
3133
+ * @return the visitor result
3134
+ */
3135
+ visitCube_clause;
3136
+ /**
3137
+ * Visit a parse tree produced by `PostgreSQLParser.grouping_sets_clause`.
3138
+ * @param ctx the parse tree
3139
+ * @return the visitor result
3140
+ */
3141
+ visitGrouping_sets_clause;
3142
+ /**
3143
+ * Visit a parse tree produced by `PostgreSQLParser.having_clause`.
3144
+ * @param ctx the parse tree
3145
+ * @return the visitor result
3146
+ */
3147
+ visitHaving_clause;
3148
+ /**
3149
+ * Visit a parse tree produced by `PostgreSQLParser.for_locking_clause`.
3150
+ * @param ctx the parse tree
3151
+ * @return the visitor result
3152
+ */
3153
+ visitFor_locking_clause;
3154
+ /**
3155
+ * Visit a parse tree produced by `PostgreSQLParser.for_locking_clause_`.
3156
+ * @param ctx the parse tree
3157
+ * @return the visitor result
3158
+ */
3159
+ visitFor_locking_clause_;
3160
+ /**
3161
+ * Visit a parse tree produced by `PostgreSQLParser.for_locking_items`.
3162
+ * @param ctx the parse tree
3163
+ * @return the visitor result
3164
+ */
3165
+ visitFor_locking_items;
3166
+ /**
3167
+ * Visit a parse tree produced by `PostgreSQLParser.for_locking_item`.
3168
+ * @param ctx the parse tree
3169
+ * @return the visitor result
3170
+ */
3171
+ visitFor_locking_item;
3172
+ /**
3173
+ * Visit a parse tree produced by `PostgreSQLParser.for_locking_strength`.
3174
+ * @param ctx the parse tree
3175
+ * @return the visitor result
3176
+ */
3177
+ visitFor_locking_strength;
3178
+ /**
3179
+ * Visit a parse tree produced by `PostgreSQLParser.locked_rels_list`.
3180
+ * @param ctx the parse tree
3181
+ * @return the visitor result
3182
+ */
3183
+ visitLocked_rels_list;
3184
+ /**
3185
+ * Visit a parse tree produced by `PostgreSQLParser.values_clause`.
3186
+ * @param ctx the parse tree
3187
+ * @return the visitor result
3188
+ */
3189
+ visitValues_clause;
3190
+ /**
3191
+ * Visit a parse tree produced by `PostgreSQLParser.from_clause`.
3192
+ * @param ctx the parse tree
3193
+ * @return the visitor result
3194
+ */
3195
+ visitFrom_clause;
3196
+ /**
3197
+ * Visit a parse tree produced by `PostgreSQLParser.from_list`.
3198
+ * @param ctx the parse tree
3199
+ * @return the visitor result
3200
+ */
3201
+ visitFrom_list;
3202
+ /**
3203
+ * Visit a parse tree produced by `PostgreSQLParser.table_ref`.
3204
+ * @param ctx the parse tree
3205
+ * @return the visitor result
3206
+ */
3207
+ visitTable_ref;
3208
+ /**
3209
+ * Visit a parse tree produced by `PostgreSQLParser.alias_clause`.
3210
+ * @param ctx the parse tree
3211
+ * @return the visitor result
3212
+ */
3213
+ visitAlias_clause;
3214
+ /**
3215
+ * Visit a parse tree produced by `PostgreSQLParser.func_alias_clause`.
3216
+ * @param ctx the parse tree
3217
+ * @return the visitor result
3218
+ */
3219
+ visitFunc_alias_clause;
3220
+ /**
3221
+ * Visit a parse tree produced by `PostgreSQLParser.join_type`.
3222
+ * @param ctx the parse tree
3223
+ * @return the visitor result
3224
+ */
3225
+ visitJoin_type;
3226
+ /**
3227
+ * Visit a parse tree produced by `PostgreSQLParser.join_qual`.
3228
+ * @param ctx the parse tree
3229
+ * @return the visitor result
3230
+ */
3231
+ visitJoin_qual;
3232
+ /**
3233
+ * Visit a parse tree produced by `PostgreSQLParser.relation_expr`.
3234
+ * @param ctx the parse tree
3235
+ * @return the visitor result
3236
+ */
3237
+ visitRelation_expr;
3238
+ /**
3239
+ * Visit a parse tree produced by `PostgreSQLParser.relation_expr_list`.
3240
+ * @param ctx the parse tree
3241
+ * @return the visitor result
3242
+ */
3243
+ visitRelation_expr_list;
3244
+ /**
3245
+ * Visit a parse tree produced by `PostgreSQLParser.relation_expr_opt_alias`.
3246
+ * @param ctx the parse tree
3247
+ * @return the visitor result
3248
+ */
3249
+ visitRelation_expr_opt_alias;
3250
+ /**
3251
+ * Visit a parse tree produced by `PostgreSQLParser.tablesample_clause`.
3252
+ * @param ctx the parse tree
3253
+ * @return the visitor result
3254
+ */
3255
+ visitTablesample_clause;
3256
+ /**
3257
+ * Visit a parse tree produced by `PostgreSQLParser.repeatable_clause_`.
3258
+ * @param ctx the parse tree
3259
+ * @return the visitor result
3260
+ */
3261
+ visitRepeatable_clause_;
3262
+ /**
3263
+ * Visit a parse tree produced by `PostgreSQLParser.func_table`.
3264
+ * @param ctx the parse tree
3265
+ * @return the visitor result
3266
+ */
3267
+ visitFunc_table;
3268
+ /**
3269
+ * Visit a parse tree produced by `PostgreSQLParser.rowsfrom_item`.
3270
+ * @param ctx the parse tree
3271
+ * @return the visitor result
3272
+ */
3273
+ visitRowsfrom_item;
3274
+ /**
3275
+ * Visit a parse tree produced by `PostgreSQLParser.rowsfrom_list`.
3276
+ * @param ctx the parse tree
3277
+ * @return the visitor result
3278
+ */
3279
+ visitRowsfrom_list;
3280
+ /**
3281
+ * Visit a parse tree produced by `PostgreSQLParser.col_def_list_`.
3282
+ * @param ctx the parse tree
3283
+ * @return the visitor result
3284
+ */
3285
+ visitCol_def_list_;
3286
+ /**
3287
+ * Visit a parse tree produced by `PostgreSQLParser.ordinality_`.
3288
+ * @param ctx the parse tree
3289
+ * @return the visitor result
3290
+ */
3291
+ visitOrdinality_;
3292
+ /**
3293
+ * Visit a parse tree produced by `PostgreSQLParser.where_clause`.
3294
+ * @param ctx the parse tree
3295
+ * @return the visitor result
3296
+ */
3297
+ visitWhere_clause;
3298
+ /**
3299
+ * Visit a parse tree produced by `PostgreSQLParser.where_or_current_clause`.
3300
+ * @param ctx the parse tree
3301
+ * @return the visitor result
3302
+ */
3303
+ visitWhere_or_current_clause;
3304
+ /**
3305
+ * Visit a parse tree produced by `PostgreSQLParser.opttablefuncelementlist`.
3306
+ * @param ctx the parse tree
3307
+ * @return the visitor result
3308
+ */
3309
+ visitOpttablefuncelementlist;
3310
+ /**
3311
+ * Visit a parse tree produced by `PostgreSQLParser.tablefuncelementlist`.
3312
+ * @param ctx the parse tree
3313
+ * @return the visitor result
3314
+ */
3315
+ visitTablefuncelementlist;
3316
+ /**
3317
+ * Visit a parse tree produced by `PostgreSQLParser.tablefuncelement`.
3318
+ * @param ctx the parse tree
3319
+ * @return the visitor result
3320
+ */
3321
+ visitTablefuncelement;
3322
+ /**
3323
+ * Visit a parse tree produced by `PostgreSQLParser.xmltable`.
3324
+ * @param ctx the parse tree
3325
+ * @return the visitor result
3326
+ */
3327
+ visitXmltable;
3328
+ /**
3329
+ * Visit a parse tree produced by `PostgreSQLParser.xmltable_column_list`.
3330
+ * @param ctx the parse tree
3331
+ * @return the visitor result
3332
+ */
3333
+ visitXmltable_column_list;
3334
+ /**
3335
+ * Visit a parse tree produced by `PostgreSQLParser.xmltable_column_el`.
3336
+ * @param ctx the parse tree
3337
+ * @return the visitor result
3338
+ */
3339
+ visitXmltable_column_el;
3340
+ /**
3341
+ * Visit a parse tree produced by `PostgreSQLParser.xmltable_column_option_list`.
3342
+ * @param ctx the parse tree
3343
+ * @return the visitor result
3344
+ */
3345
+ visitXmltable_column_option_list;
3346
+ /**
3347
+ * Visit a parse tree produced by `PostgreSQLParser.xmltable_column_option_el`.
3348
+ * @param ctx the parse tree
3349
+ * @return the visitor result
3350
+ */
3351
+ visitXmltable_column_option_el;
3352
+ /**
3353
+ * Visit a parse tree produced by `PostgreSQLParser.xml_namespace_list`.
3354
+ * @param ctx the parse tree
3355
+ * @return the visitor result
3356
+ */
3357
+ visitXml_namespace_list;
3358
+ /**
3359
+ * Visit a parse tree produced by `PostgreSQLParser.xml_namespace_el`.
3360
+ * @param ctx the parse tree
3361
+ * @return the visitor result
3362
+ */
3363
+ visitXml_namespace_el;
3364
+ /**
3365
+ * Visit a parse tree produced by `PostgreSQLParser.typename`.
3366
+ * @param ctx the parse tree
3367
+ * @return the visitor result
3368
+ */
3369
+ visitTypename;
3370
+ /**
3371
+ * Visit a parse tree produced by `PostgreSQLParser.opt_array_bounds`.
3372
+ * @param ctx the parse tree
3373
+ * @return the visitor result
3374
+ */
3375
+ visitOpt_array_bounds;
3376
+ /**
3377
+ * Visit a parse tree produced by `PostgreSQLParser.simpletypename`.
3378
+ * @param ctx the parse tree
3379
+ * @return the visitor result
3380
+ */
3381
+ visitSimpletypename;
3382
+ /**
3383
+ * Visit a parse tree produced by `PostgreSQLParser.consttypename`.
3384
+ * @param ctx the parse tree
3385
+ * @return the visitor result
3386
+ */
3387
+ visitConsttypename;
3388
+ /**
3389
+ * Visit a parse tree produced by `PostgreSQLParser.generictype`.
3390
+ * @param ctx the parse tree
3391
+ * @return the visitor result
3392
+ */
3393
+ visitGenerictype;
3394
+ /**
3395
+ * Visit a parse tree produced by `PostgreSQLParser.type_modifiers_`.
3396
+ * @param ctx the parse tree
3397
+ * @return the visitor result
3398
+ */
3399
+ visitType_modifiers_;
3400
+ /**
3401
+ * Visit a parse tree produced by `PostgreSQLParser.numeric`.
3402
+ * @param ctx the parse tree
3403
+ * @return the visitor result
3404
+ */
3405
+ visitNumeric;
3406
+ /**
3407
+ * Visit a parse tree produced by `PostgreSQLParser.float_`.
3408
+ * @param ctx the parse tree
3409
+ * @return the visitor result
3410
+ */
3411
+ visitFloat_;
3412
+ /**
3413
+ * Visit a parse tree produced by `PostgreSQLParser.bit`.
3414
+ * @param ctx the parse tree
3415
+ * @return the visitor result
3416
+ */
3417
+ visitBit;
3418
+ /**
3419
+ * Visit a parse tree produced by `PostgreSQLParser.constbit`.
3420
+ * @param ctx the parse tree
3421
+ * @return the visitor result
3422
+ */
3423
+ visitConstbit;
3424
+ /**
3425
+ * Visit a parse tree produced by `PostgreSQLParser.bitwithlength`.
3426
+ * @param ctx the parse tree
3427
+ * @return the visitor result
3428
+ */
3429
+ visitBitwithlength;
3430
+ /**
3431
+ * Visit a parse tree produced by `PostgreSQLParser.bitwithoutlength`.
3432
+ * @param ctx the parse tree
3433
+ * @return the visitor result
3434
+ */
3435
+ visitBitwithoutlength;
3436
+ /**
3437
+ * Visit a parse tree produced by `PostgreSQLParser.character`.
3438
+ * @param ctx the parse tree
3439
+ * @return the visitor result
3440
+ */
3441
+ visitCharacter;
3442
+ /**
3443
+ * Visit a parse tree produced by `PostgreSQLParser.constcharacter`.
3444
+ * @param ctx the parse tree
3445
+ * @return the visitor result
3446
+ */
3447
+ visitConstcharacter;
3448
+ /**
3449
+ * Visit a parse tree produced by `PostgreSQLParser.character_c`.
3450
+ * @param ctx the parse tree
3451
+ * @return the visitor result
3452
+ */
3453
+ visitCharacter_c;
3454
+ /**
3455
+ * Visit a parse tree produced by `PostgreSQLParser.varying_`.
3456
+ * @param ctx the parse tree
3457
+ * @return the visitor result
3458
+ */
3459
+ visitVarying_;
3460
+ /**
3461
+ * Visit a parse tree produced by `PostgreSQLParser.constdatetime`.
3462
+ * @param ctx the parse tree
3463
+ * @return the visitor result
3464
+ */
3465
+ visitConstdatetime;
3466
+ /**
3467
+ * Visit a parse tree produced by `PostgreSQLParser.constinterval`.
3468
+ * @param ctx the parse tree
3469
+ * @return the visitor result
3470
+ */
3471
+ visitConstinterval;
3472
+ /**
3473
+ * Visit a parse tree produced by `PostgreSQLParser.timezone_`.
3474
+ * @param ctx the parse tree
3475
+ * @return the visitor result
3476
+ */
3477
+ visitTimezone_;
3478
+ /**
3479
+ * Visit a parse tree produced by `PostgreSQLParser.interval_`.
3480
+ * @param ctx the parse tree
3481
+ * @return the visitor result
3482
+ */
3483
+ visitInterval_;
3484
+ /**
3485
+ * Visit a parse tree produced by `PostgreSQLParser.interval_second`.
3486
+ * @param ctx the parse tree
3487
+ * @return the visitor result
3488
+ */
3489
+ visitInterval_second;
3490
+ /**
3491
+ * Visit a parse tree produced by `PostgreSQLParser.jsonType`.
3492
+ * @param ctx the parse tree
3493
+ * @return the visitor result
3494
+ */
3495
+ visitJsonType;
3496
+ /**
3497
+ * Visit a parse tree produced by `PostgreSQLParser.escape_`.
3498
+ * @param ctx the parse tree
3499
+ * @return the visitor result
3500
+ */
3501
+ visitEscape_;
3502
+ /**
3503
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr`.
3504
+ * @param ctx the parse tree
3505
+ * @return the visitor result
3506
+ */
3507
+ visitA_expr;
3508
+ /**
3509
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_qual`.
3510
+ * @param ctx the parse tree
3511
+ * @return the visitor result
3512
+ */
3513
+ visitA_expr_qual;
3514
+ /**
3515
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_lessless`.
3516
+ * @param ctx the parse tree
3517
+ * @return the visitor result
3518
+ */
3519
+ visitA_expr_lessless;
3520
+ /**
3521
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_or`.
3522
+ * @param ctx the parse tree
3523
+ * @return the visitor result
3524
+ */
3525
+ visitA_expr_or;
3526
+ /**
3527
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_and`.
3528
+ * @param ctx the parse tree
3529
+ * @return the visitor result
3530
+ */
3531
+ visitA_expr_and;
3532
+ /**
3533
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_between`.
3534
+ * @param ctx the parse tree
3535
+ * @return the visitor result
3536
+ */
3537
+ visitA_expr_between;
3538
+ /**
3539
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_in`.
3540
+ * @param ctx the parse tree
3541
+ * @return the visitor result
3542
+ */
3543
+ visitA_expr_in;
3544
+ /**
3545
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_unary_not`.
3546
+ * @param ctx the parse tree
3547
+ * @return the visitor result
3548
+ */
3549
+ visitA_expr_unary_not;
3550
+ /**
3551
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_isnull`.
3552
+ * @param ctx the parse tree
3553
+ * @return the visitor result
3554
+ */
3555
+ visitA_expr_isnull;
3556
+ /**
3557
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_is_not`.
3558
+ * @param ctx the parse tree
3559
+ * @return the visitor result
3560
+ */
3561
+ visitA_expr_is_not;
3562
+ /**
3563
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_compare`.
3564
+ * @param ctx the parse tree
3565
+ * @return the visitor result
3566
+ */
3567
+ visitA_expr_compare;
3568
+ /**
3569
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_like`.
3570
+ * @param ctx the parse tree
3571
+ * @return the visitor result
3572
+ */
3573
+ visitA_expr_like;
3574
+ /**
3575
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_qual_op`.
3576
+ * @param ctx the parse tree
3577
+ * @return the visitor result
3578
+ */
3579
+ visitA_expr_qual_op;
3580
+ /**
3581
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_unary_qualop`.
3582
+ * @param ctx the parse tree
3583
+ * @return the visitor result
3584
+ */
3585
+ visitA_expr_unary_qualop;
3586
+ /**
3587
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_add`.
3588
+ * @param ctx the parse tree
3589
+ * @return the visitor result
3590
+ */
3591
+ visitA_expr_add;
3592
+ /**
3593
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_mul`.
3594
+ * @param ctx the parse tree
3595
+ * @return the visitor result
3596
+ */
3597
+ visitA_expr_mul;
3598
+ /**
3599
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_caret`.
3600
+ * @param ctx the parse tree
3601
+ * @return the visitor result
3602
+ */
3603
+ visitA_expr_caret;
3604
+ /**
3605
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_unary_sign`.
3606
+ * @param ctx the parse tree
3607
+ * @return the visitor result
3608
+ */
3609
+ visitA_expr_unary_sign;
3610
+ /**
3611
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_at_time_zone`.
3612
+ * @param ctx the parse tree
3613
+ * @return the visitor result
3614
+ */
3615
+ visitA_expr_at_time_zone;
3616
+ /**
3617
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_collate`.
3618
+ * @param ctx the parse tree
3619
+ * @return the visitor result
3620
+ */
3621
+ visitA_expr_collate;
3622
+ /**
3623
+ * Visit a parse tree produced by `PostgreSQLParser.a_expr_typecast`.
3624
+ * @param ctx the parse tree
3625
+ * @return the visitor result
3626
+ */
3627
+ visitA_expr_typecast;
3628
+ /**
3629
+ * Visit a parse tree produced by `PostgreSQLParser.b_expr`.
3630
+ * @param ctx the parse tree
3631
+ * @return the visitor result
3632
+ */
3633
+ visitB_expr;
3634
+ /**
3635
+ * Visit a parse tree produced by the `c_expr_exists`
3636
+ * labeled alternative in `PostgreSQLParser.c_expr`.
3637
+ * @param ctx the parse tree
3638
+ * @return the visitor result
3639
+ */
3640
+ visitC_expr_exists;
3641
+ /**
3642
+ * Visit a parse tree produced by the `c_expr_expr`
3643
+ * labeled alternative in `PostgreSQLParser.c_expr`.
3644
+ * @param ctx the parse tree
3645
+ * @return the visitor result
3646
+ */
3647
+ visitC_expr_expr;
3648
+ /**
3649
+ * Visit a parse tree produced by the `c_expr_case`
3650
+ * labeled alternative in `PostgreSQLParser.c_expr`.
3651
+ * @param ctx the parse tree
3652
+ * @return the visitor result
3653
+ */
3654
+ visitC_expr_case;
3655
+ /**
3656
+ * Visit a parse tree produced by `PostgreSQLParser.plsqlvariablename`.
3657
+ * @param ctx the parse tree
3658
+ * @return the visitor result
3659
+ */
3660
+ visitPlsqlvariablename;
3661
+ /**
3662
+ * Visit a parse tree produced by `PostgreSQLParser.func_application`.
3663
+ * @param ctx the parse tree
3664
+ * @return the visitor result
3665
+ */
3666
+ visitFunc_application;
3667
+ /**
3668
+ * Visit a parse tree produced by `PostgreSQLParser.func_expr`.
3669
+ * @param ctx the parse tree
3670
+ * @return the visitor result
3671
+ */
3672
+ visitFunc_expr;
3673
+ /**
3674
+ * Visit a parse tree produced by `PostgreSQLParser.func_expr_windowless`.
3675
+ * @param ctx the parse tree
3676
+ * @return the visitor result
3677
+ */
3678
+ visitFunc_expr_windowless;
3679
+ /**
3680
+ * Visit a parse tree produced by `PostgreSQLParser.func_expr_common_subexpr`.
3681
+ * @param ctx the parse tree
3682
+ * @return the visitor result
3683
+ */
3684
+ visitFunc_expr_common_subexpr;
3685
+ /**
3686
+ * Visit a parse tree produced by `PostgreSQLParser.xml_root_version`.
3687
+ * @param ctx the parse tree
3688
+ * @return the visitor result
3689
+ */
3690
+ visitXml_root_version;
3691
+ /**
3692
+ * Visit a parse tree produced by `PostgreSQLParser.xml_root_standalone_`.
3693
+ * @param ctx the parse tree
3694
+ * @return the visitor result
3695
+ */
3696
+ visitXml_root_standalone_;
3697
+ /**
3698
+ * Visit a parse tree produced by `PostgreSQLParser.xml_attributes`.
3699
+ * @param ctx the parse tree
3700
+ * @return the visitor result
3701
+ */
3702
+ visitXml_attributes;
3703
+ /**
3704
+ * Visit a parse tree produced by `PostgreSQLParser.xml_attribute_list`.
3705
+ * @param ctx the parse tree
3706
+ * @return the visitor result
3707
+ */
3708
+ visitXml_attribute_list;
3709
+ /**
3710
+ * Visit a parse tree produced by `PostgreSQLParser.xml_attribute_el`.
3711
+ * @param ctx the parse tree
3712
+ * @return the visitor result
3713
+ */
3714
+ visitXml_attribute_el;
3715
+ /**
3716
+ * Visit a parse tree produced by `PostgreSQLParser.document_or_content`.
3717
+ * @param ctx the parse tree
3718
+ * @return the visitor result
3719
+ */
3720
+ visitDocument_or_content;
3721
+ /**
3722
+ * Visit a parse tree produced by `PostgreSQLParser.xml_whitespace_option`.
3723
+ * @param ctx the parse tree
3724
+ * @return the visitor result
3725
+ */
3726
+ visitXml_whitespace_option;
3727
+ /**
3728
+ * Visit a parse tree produced by `PostgreSQLParser.xmlexists_argument`.
3729
+ * @param ctx the parse tree
3730
+ * @return the visitor result
3731
+ */
3732
+ visitXmlexists_argument;
3733
+ /**
3734
+ * Visit a parse tree produced by `PostgreSQLParser.xml_passing_mech`.
3735
+ * @param ctx the parse tree
3736
+ * @return the visitor result
3737
+ */
3738
+ visitXml_passing_mech;
3739
+ /**
3740
+ * Visit a parse tree produced by `PostgreSQLParser.within_group_clause`.
3741
+ * @param ctx the parse tree
3742
+ * @return the visitor result
3743
+ */
3744
+ visitWithin_group_clause;
3745
+ /**
3746
+ * Visit a parse tree produced by `PostgreSQLParser.filter_clause`.
3747
+ * @param ctx the parse tree
3748
+ * @return the visitor result
3749
+ */
3750
+ visitFilter_clause;
3751
+ /**
3752
+ * Visit a parse tree produced by `PostgreSQLParser.window_clause`.
3753
+ * @param ctx the parse tree
3754
+ * @return the visitor result
3755
+ */
3756
+ visitWindow_clause;
3757
+ /**
3758
+ * Visit a parse tree produced by `PostgreSQLParser.window_definition_list`.
3759
+ * @param ctx the parse tree
3760
+ * @return the visitor result
3761
+ */
3762
+ visitWindow_definition_list;
3763
+ /**
3764
+ * Visit a parse tree produced by `PostgreSQLParser.window_definition`.
3765
+ * @param ctx the parse tree
3766
+ * @return the visitor result
3767
+ */
3768
+ visitWindow_definition;
3769
+ /**
3770
+ * Visit a parse tree produced by `PostgreSQLParser.over_clause`.
3771
+ * @param ctx the parse tree
3772
+ * @return the visitor result
3773
+ */
3774
+ visitOver_clause;
3775
+ /**
3776
+ * Visit a parse tree produced by `PostgreSQLParser.window_specification`.
3777
+ * @param ctx the parse tree
3778
+ * @return the visitor result
3779
+ */
3780
+ visitWindow_specification;
3781
+ /**
3782
+ * Visit a parse tree produced by `PostgreSQLParser.existing_window_name_`.
3783
+ * @param ctx the parse tree
3784
+ * @return the visitor result
3785
+ */
3786
+ visitExisting_window_name_;
3787
+ /**
3788
+ * Visit a parse tree produced by `PostgreSQLParser.partition_clause_`.
3789
+ * @param ctx the parse tree
3790
+ * @return the visitor result
3791
+ */
3792
+ visitPartition_clause_;
3793
+ /**
3794
+ * Visit a parse tree produced by `PostgreSQLParser.frame_clause_`.
3795
+ * @param ctx the parse tree
3796
+ * @return the visitor result
3797
+ */
3798
+ visitFrame_clause_;
3799
+ /**
3800
+ * Visit a parse tree produced by `PostgreSQLParser.frame_extent`.
3801
+ * @param ctx the parse tree
3802
+ * @return the visitor result
3803
+ */
3804
+ visitFrame_extent;
3805
+ /**
3806
+ * Visit a parse tree produced by `PostgreSQLParser.frame_bound`.
3807
+ * @param ctx the parse tree
3808
+ * @return the visitor result
3809
+ */
3810
+ visitFrame_bound;
3811
+ /**
3812
+ * Visit a parse tree produced by `PostgreSQLParser.window_exclusion_clause_`.
3813
+ * @param ctx the parse tree
3814
+ * @return the visitor result
3815
+ */
3816
+ visitWindow_exclusion_clause_;
3817
+ /**
3818
+ * Visit a parse tree produced by `PostgreSQLParser.row`.
3819
+ * @param ctx the parse tree
3820
+ * @return the visitor result
3821
+ */
3822
+ visitRow;
3823
+ /**
3824
+ * Visit a parse tree produced by `PostgreSQLParser.explicit_row`.
3825
+ * @param ctx the parse tree
3826
+ * @return the visitor result
3827
+ */
3828
+ visitExplicit_row;
3829
+ /**
3830
+ * Visit a parse tree produced by `PostgreSQLParser.implicit_row`.
3831
+ * @param ctx the parse tree
3832
+ * @return the visitor result
3833
+ */
3834
+ visitImplicit_row;
3835
+ /**
3836
+ * Visit a parse tree produced by `PostgreSQLParser.sub_type`.
3837
+ * @param ctx the parse tree
3838
+ * @return the visitor result
3839
+ */
3840
+ visitSub_type;
3841
+ /**
3842
+ * Visit a parse tree produced by `PostgreSQLParser.all_op`.
3843
+ * @param ctx the parse tree
3844
+ * @return the visitor result
3845
+ */
3846
+ visitAll_op;
3847
+ /**
3848
+ * Visit a parse tree produced by `PostgreSQLParser.mathop`.
3849
+ * @param ctx the parse tree
3850
+ * @return the visitor result
3851
+ */
3852
+ visitMathop;
3853
+ /**
3854
+ * Visit a parse tree produced by `PostgreSQLParser.qual_op`.
3855
+ * @param ctx the parse tree
3856
+ * @return the visitor result
3857
+ */
3858
+ visitQual_op;
3859
+ /**
3860
+ * Visit a parse tree produced by `PostgreSQLParser.qual_all_op`.
3861
+ * @param ctx the parse tree
3862
+ * @return the visitor result
3863
+ */
3864
+ visitQual_all_op;
3865
+ /**
3866
+ * Visit a parse tree produced by `PostgreSQLParser.subquery_Op`.
3867
+ * @param ctx the parse tree
3868
+ * @return the visitor result
3869
+ */
3870
+ visitSubquery_Op;
3871
+ /**
3872
+ * Visit a parse tree produced by `PostgreSQLParser.expr_list`.
3873
+ * @param ctx the parse tree
3874
+ * @return the visitor result
3875
+ */
3876
+ visitExpr_list;
3877
+ /**
3878
+ * Visit a parse tree produced by `PostgreSQLParser.func_arg_list`.
3879
+ * @param ctx the parse tree
3880
+ * @return the visitor result
3881
+ */
3882
+ visitFunc_arg_list;
3883
+ /**
3884
+ * Visit a parse tree produced by `PostgreSQLParser.func_arg_expr`.
3885
+ * @param ctx the parse tree
3886
+ * @return the visitor result
3887
+ */
3888
+ visitFunc_arg_expr;
3889
+ /**
3890
+ * Visit a parse tree produced by `PostgreSQLParser.type_list`.
3891
+ * @param ctx the parse tree
3892
+ * @return the visitor result
3893
+ */
3894
+ visitType_list;
3895
+ /**
3896
+ * Visit a parse tree produced by `PostgreSQLParser.array_expr`.
3897
+ * @param ctx the parse tree
3898
+ * @return the visitor result
3899
+ */
3900
+ visitArray_expr;
3901
+ /**
3902
+ * Visit a parse tree produced by `PostgreSQLParser.array_expr_list`.
3903
+ * @param ctx the parse tree
3904
+ * @return the visitor result
3905
+ */
3906
+ visitArray_expr_list;
3907
+ /**
3908
+ * Visit a parse tree produced by `PostgreSQLParser.extract_list`.
3909
+ * @param ctx the parse tree
3910
+ * @return the visitor result
3911
+ */
3912
+ visitExtract_list;
3913
+ /**
3914
+ * Visit a parse tree produced by `PostgreSQLParser.extract_arg`.
3915
+ * @param ctx the parse tree
3916
+ * @return the visitor result
3917
+ */
3918
+ visitExtract_arg;
3919
+ /**
3920
+ * Visit a parse tree produced by `PostgreSQLParser.unicode_normal_form`.
3921
+ * @param ctx the parse tree
3922
+ * @return the visitor result
3923
+ */
3924
+ visitUnicode_normal_form;
3925
+ /**
3926
+ * Visit a parse tree produced by `PostgreSQLParser.overlay_list`.
3927
+ * @param ctx the parse tree
3928
+ * @return the visitor result
3929
+ */
3930
+ visitOverlay_list;
3931
+ /**
3932
+ * Visit a parse tree produced by `PostgreSQLParser.position_list`.
3933
+ * @param ctx the parse tree
3934
+ * @return the visitor result
3935
+ */
3936
+ visitPosition_list;
3937
+ /**
3938
+ * Visit a parse tree produced by `PostgreSQLParser.substr_list`.
3939
+ * @param ctx the parse tree
3940
+ * @return the visitor result
3941
+ */
3942
+ visitSubstr_list;
3943
+ /**
3944
+ * Visit a parse tree produced by `PostgreSQLParser.trim_list`.
3945
+ * @param ctx the parse tree
3946
+ * @return the visitor result
3947
+ */
3948
+ visitTrim_list;
3949
+ /**
3950
+ * Visit a parse tree produced by the `in_expr_select`
3951
+ * labeled alternative in `PostgreSQLParser.in_expr`.
3952
+ * @param ctx the parse tree
3953
+ * @return the visitor result
3954
+ */
3955
+ visitIn_expr_select;
3956
+ /**
3957
+ * Visit a parse tree produced by the `in_expr_list`
3958
+ * labeled alternative in `PostgreSQLParser.in_expr`.
3959
+ * @param ctx the parse tree
3960
+ * @return the visitor result
3961
+ */
3962
+ visitIn_expr_list;
3963
+ /**
3964
+ * Visit a parse tree produced by `PostgreSQLParser.case_expr`.
3965
+ * @param ctx the parse tree
3966
+ * @return the visitor result
3967
+ */
3968
+ visitCase_expr;
3969
+ /**
3970
+ * Visit a parse tree produced by `PostgreSQLParser.when_clause_list`.
3971
+ * @param ctx the parse tree
3972
+ * @return the visitor result
3973
+ */
3974
+ visitWhen_clause_list;
3975
+ /**
3976
+ * Visit a parse tree produced by `PostgreSQLParser.when_clause`.
3977
+ * @param ctx the parse tree
3978
+ * @return the visitor result
3979
+ */
3980
+ visitWhen_clause;
3981
+ /**
3982
+ * Visit a parse tree produced by `PostgreSQLParser.case_default`.
3983
+ * @param ctx the parse tree
3984
+ * @return the visitor result
3985
+ */
3986
+ visitCase_default;
3987
+ /**
3988
+ * Visit a parse tree produced by `PostgreSQLParser.case_arg`.
3989
+ * @param ctx the parse tree
3990
+ * @return the visitor result
3991
+ */
3992
+ visitCase_arg;
3993
+ /**
3994
+ * Visit a parse tree produced by `PostgreSQLParser.columnref`.
3995
+ * @param ctx the parse tree
3996
+ * @return the visitor result
3997
+ */
3998
+ visitColumnref;
3999
+ /**
4000
+ * Visit a parse tree produced by `PostgreSQLParser.indirection_el`.
4001
+ * @param ctx the parse tree
4002
+ * @return the visitor result
4003
+ */
4004
+ visitIndirection_el;
4005
+ /**
4006
+ * Visit a parse tree produced by `PostgreSQLParser.slice_bound_`.
4007
+ * @param ctx the parse tree
4008
+ * @return the visitor result
4009
+ */
4010
+ visitSlice_bound_;
4011
+ /**
4012
+ * Visit a parse tree produced by `PostgreSQLParser.indirection`.
4013
+ * @param ctx the parse tree
4014
+ * @return the visitor result
4015
+ */
4016
+ visitIndirection;
4017
+ /**
4018
+ * Visit a parse tree produced by `PostgreSQLParser.opt_indirection`.
4019
+ * @param ctx the parse tree
4020
+ * @return the visitor result
4021
+ */
4022
+ visitOpt_indirection;
4023
+ /**
4024
+ * Visit a parse tree produced by `PostgreSQLParser.json_passing_clause`.
4025
+ * @param ctx the parse tree
4026
+ * @return the visitor result
4027
+ */
4028
+ visitJson_passing_clause;
4029
+ /**
4030
+ * Visit a parse tree produced by `PostgreSQLParser.json_arguments`.
4031
+ * @param ctx the parse tree
4032
+ * @return the visitor result
4033
+ */
4034
+ visitJson_arguments;
4035
+ /**
4036
+ * Visit a parse tree produced by `PostgreSQLParser.json_argument`.
4037
+ * @param ctx the parse tree
4038
+ * @return the visitor result
4039
+ */
4040
+ visitJson_argument;
4041
+ /**
4042
+ * Visit a parse tree produced by `PostgreSQLParser.json_wrapper_behavior`.
4043
+ * @param ctx the parse tree
4044
+ * @return the visitor result
4045
+ */
4046
+ visitJson_wrapper_behavior;
4047
+ /**
4048
+ * Visit a parse tree produced by `PostgreSQLParser.json_behavior`.
4049
+ * @param ctx the parse tree
4050
+ * @return the visitor result
4051
+ */
4052
+ visitJson_behavior;
4053
+ /**
4054
+ * Visit a parse tree produced by `PostgreSQLParser.json_behavior_type`.
4055
+ * @param ctx the parse tree
4056
+ * @return the visitor result
4057
+ */
4058
+ visitJson_behavior_type;
4059
+ /**
4060
+ * Visit a parse tree produced by `PostgreSQLParser.json_behavior_clause`.
4061
+ * @param ctx the parse tree
4062
+ * @return the visitor result
4063
+ */
4064
+ visitJson_behavior_clause;
4065
+ /**
4066
+ * Visit a parse tree produced by `PostgreSQLParser.json_on_error_clause`.
4067
+ * @param ctx the parse tree
4068
+ * @return the visitor result
4069
+ */
4070
+ visitJson_on_error_clause;
4071
+ /**
4072
+ * Visit a parse tree produced by `PostgreSQLParser.json_value_expr`.
4073
+ * @param ctx the parse tree
4074
+ * @return the visitor result
4075
+ */
4076
+ visitJson_value_expr;
4077
+ /**
4078
+ * Visit a parse tree produced by `PostgreSQLParser.json_format_clause`.
4079
+ * @param ctx the parse tree
4080
+ * @return the visitor result
4081
+ */
4082
+ visitJson_format_clause;
4083
+ /**
4084
+ * Visit a parse tree produced by `PostgreSQLParser.json_quotes_clause`.
4085
+ * @param ctx the parse tree
4086
+ * @return the visitor result
4087
+ */
4088
+ visitJson_quotes_clause;
4089
+ /**
4090
+ * Visit a parse tree produced by `PostgreSQLParser.json_returning_clause`.
4091
+ * @param ctx the parse tree
4092
+ * @return the visitor result
4093
+ */
4094
+ visitJson_returning_clause;
4095
+ /**
4096
+ * Visit a parse tree produced by `PostgreSQLParser.json_predicate_type_constraint`.
4097
+ * @param ctx the parse tree
4098
+ * @return the visitor result
4099
+ */
4100
+ visitJson_predicate_type_constraint;
4101
+ /**
4102
+ * Visit a parse tree produced by `PostgreSQLParser.json_key_uniqueness_constraint`.
4103
+ * @param ctx the parse tree
4104
+ * @return the visitor result
4105
+ */
4106
+ visitJson_key_uniqueness_constraint;
4107
+ /**
4108
+ * Visit a parse tree produced by `PostgreSQLParser.json_name_and_value_list`.
4109
+ * @param ctx the parse tree
4110
+ * @return the visitor result
4111
+ */
4112
+ visitJson_name_and_value_list;
4113
+ /**
4114
+ * Visit a parse tree produced by `PostgreSQLParser.json_name_and_value`.
4115
+ * @param ctx the parse tree
4116
+ * @return the visitor result
4117
+ */
4118
+ visitJson_name_and_value;
4119
+ /**
4120
+ * Visit a parse tree produced by `PostgreSQLParser.json_object_constructor_null_clause`.
4121
+ * @param ctx the parse tree
4122
+ * @return the visitor result
4123
+ */
4124
+ visitJson_object_constructor_null_clause;
4125
+ /**
4126
+ * Visit a parse tree produced by `PostgreSQLParser.json_array_constructor_null_clause`.
4127
+ * @param ctx the parse tree
4128
+ * @return the visitor result
4129
+ */
4130
+ visitJson_array_constructor_null_clause;
4131
+ /**
4132
+ * Visit a parse tree produced by `PostgreSQLParser.json_value_expr_list`.
4133
+ * @param ctx the parse tree
4134
+ * @return the visitor result
4135
+ */
4136
+ visitJson_value_expr_list;
4137
+ /**
4138
+ * Visit a parse tree produced by `PostgreSQLParser.json_aggregate_func`.
4139
+ * @param ctx the parse tree
4140
+ * @return the visitor result
4141
+ */
4142
+ visitJson_aggregate_func;
4143
+ /**
4144
+ * Visit a parse tree produced by `PostgreSQLParser.json_array_aggregate_order_by_clause`.
4145
+ * @param ctx the parse tree
4146
+ * @return the visitor result
4147
+ */
4148
+ visitJson_array_aggregate_order_by_clause;
4149
+ /**
4150
+ * Visit a parse tree produced by `PostgreSQLParser.target_list_`.
4151
+ * @param ctx the parse tree
4152
+ * @return the visitor result
4153
+ */
4154
+ visitTarget_list_;
4155
+ /**
4156
+ * Visit a parse tree produced by `PostgreSQLParser.target_list`.
4157
+ * @param ctx the parse tree
4158
+ * @return the visitor result
4159
+ */
4160
+ visitTarget_list;
4161
+ /**
4162
+ * Visit a parse tree produced by the `target_label`
4163
+ * labeled alternative in `PostgreSQLParser.target_el`.
4164
+ * @param ctx the parse tree
4165
+ * @return the visitor result
4166
+ */
4167
+ visitTarget_label;
4168
+ /**
4169
+ * Visit a parse tree produced by the `target_star`
4170
+ * labeled alternative in `PostgreSQLParser.target_el`.
4171
+ * @param ctx the parse tree
4172
+ * @return the visitor result
4173
+ */
4174
+ visitTarget_star;
4175
+ /**
4176
+ * Visit a parse tree produced by `PostgreSQLParser.qualified_name_list`.
4177
+ * @param ctx the parse tree
4178
+ * @return the visitor result
4179
+ */
4180
+ visitQualified_name_list;
4181
+ /**
4182
+ * Visit a parse tree produced by `PostgreSQLParser.qualified_name`.
4183
+ * @param ctx the parse tree
4184
+ * @return the visitor result
4185
+ */
4186
+ visitQualified_name;
4187
+ /**
4188
+ * Visit a parse tree produced by `PostgreSQLParser.name_list`.
4189
+ * @param ctx the parse tree
4190
+ * @return the visitor result
4191
+ */
4192
+ visitName_list;
4193
+ /**
4194
+ * Visit a parse tree produced by `PostgreSQLParser.name`.
4195
+ * @param ctx the parse tree
4196
+ * @return the visitor result
4197
+ */
4198
+ visitName;
4199
+ /**
4200
+ * Visit a parse tree produced by `PostgreSQLParser.attr_name`.
4201
+ * @param ctx the parse tree
4202
+ * @return the visitor result
4203
+ */
4204
+ visitAttr_name;
4205
+ /**
4206
+ * Visit a parse tree produced by `PostgreSQLParser.file_name`.
4207
+ * @param ctx the parse tree
4208
+ * @return the visitor result
4209
+ */
4210
+ visitFile_name;
4211
+ /**
4212
+ * Visit a parse tree produced by `PostgreSQLParser.func_name`.
4213
+ * @param ctx the parse tree
4214
+ * @return the visitor result
4215
+ */
4216
+ visitFunc_name;
4217
+ /**
4218
+ * Visit a parse tree produced by `PostgreSQLParser.aexprconst`.
4219
+ * @param ctx the parse tree
4220
+ * @return the visitor result
4221
+ */
4222
+ visitAexprconst;
4223
+ /**
4224
+ * Visit a parse tree produced by `PostgreSQLParser.xconst`.
4225
+ * @param ctx the parse tree
4226
+ * @return the visitor result
4227
+ */
4228
+ visitXconst;
4229
+ /**
4230
+ * Visit a parse tree produced by `PostgreSQLParser.bconst`.
4231
+ * @param ctx the parse tree
4232
+ * @return the visitor result
4233
+ */
4234
+ visitBconst;
4235
+ /**
4236
+ * Visit a parse tree produced by `PostgreSQLParser.fconst`.
4237
+ * @param ctx the parse tree
4238
+ * @return the visitor result
4239
+ */
4240
+ visitFconst;
4241
+ /**
4242
+ * Visit a parse tree produced by `PostgreSQLParser.iconst`.
4243
+ * @param ctx the parse tree
4244
+ * @return the visitor result
4245
+ */
4246
+ visitIconst;
4247
+ /**
4248
+ * Visit a parse tree produced by `PostgreSQLParser.sconst`.
4249
+ * @param ctx the parse tree
4250
+ * @return the visitor result
4251
+ */
4252
+ visitSconst;
4253
+ /**
4254
+ * Visit a parse tree produced by `PostgreSQLParser.anysconst`.
4255
+ * @param ctx the parse tree
4256
+ * @return the visitor result
4257
+ */
4258
+ visitAnysconst;
4259
+ /**
4260
+ * Visit a parse tree produced by `PostgreSQLParser.uescape_`.
4261
+ * @param ctx the parse tree
4262
+ * @return the visitor result
4263
+ */
4264
+ visitUescape_;
4265
+ /**
4266
+ * Visit a parse tree produced by `PostgreSQLParser.signediconst`.
4267
+ * @param ctx the parse tree
4268
+ * @return the visitor result
4269
+ */
4270
+ visitSignediconst;
4271
+ /**
4272
+ * Visit a parse tree produced by `PostgreSQLParser.roleid`.
4273
+ * @param ctx the parse tree
4274
+ * @return the visitor result
4275
+ */
4276
+ visitRoleid;
4277
+ /**
4278
+ * Visit a parse tree produced by `PostgreSQLParser.rolespec`.
4279
+ * @param ctx the parse tree
4280
+ * @return the visitor result
4281
+ */
4282
+ visitRolespec;
4283
+ /**
4284
+ * Visit a parse tree produced by `PostgreSQLParser.role_list`.
4285
+ * @param ctx the parse tree
4286
+ * @return the visitor result
4287
+ */
4288
+ visitRole_list;
4289
+ /**
4290
+ * Visit a parse tree produced by `PostgreSQLParser.colid`.
4291
+ * @param ctx the parse tree
4292
+ * @return the visitor result
4293
+ */
4294
+ visitColid;
4295
+ /**
4296
+ * Visit a parse tree produced by `PostgreSQLParser.type_function_name`.
4297
+ * @param ctx the parse tree
4298
+ * @return the visitor result
4299
+ */
4300
+ visitType_function_name;
4301
+ /**
4302
+ * Visit a parse tree produced by `PostgreSQLParser.nonreservedword`.
4303
+ * @param ctx the parse tree
4304
+ * @return the visitor result
4305
+ */
4306
+ visitNonreservedword;
4307
+ /**
4308
+ * Visit a parse tree produced by `PostgreSQLParser.colLabel`.
4309
+ * @param ctx the parse tree
4310
+ * @return the visitor result
4311
+ */
4312
+ visitColLabel;
4313
+ /**
4314
+ * Visit a parse tree produced by `PostgreSQLParser.bareColLabel`.
4315
+ * @param ctx the parse tree
4316
+ * @return the visitor result
4317
+ */
4318
+ visitBareColLabel;
4319
+ /**
4320
+ * Visit a parse tree produced by `PostgreSQLParser.unreserved_keyword`.
4321
+ * @param ctx the parse tree
4322
+ * @return the visitor result
4323
+ */
4324
+ visitUnreserved_keyword;
4325
+ /**
4326
+ * Visit a parse tree produced by `PostgreSQLParser.col_name_keyword`.
4327
+ * @param ctx the parse tree
4328
+ * @return the visitor result
4329
+ */
4330
+ visitCol_name_keyword;
4331
+ /**
4332
+ * Visit a parse tree produced by `PostgreSQLParser.type_func_name_keyword`.
4333
+ * @param ctx the parse tree
4334
+ * @return the visitor result
4335
+ */
4336
+ visitType_func_name_keyword;
4337
+ /**
4338
+ * Visit a parse tree produced by `PostgreSQLParser.reserved_keyword`.
4339
+ * @param ctx the parse tree
4340
+ * @return the visitor result
4341
+ */
4342
+ visitReserved_keyword;
4343
+ /**
4344
+ * Visit a parse tree produced by `PostgreSQLParser.bare_label_keyword`.
4345
+ * @param ctx the parse tree
4346
+ * @return the visitor result
4347
+ */
4348
+ visitBare_label_keyword;
4349
+ /**
4350
+ * Visit a parse tree produced by `PostgreSQLParser.any_identifier`.
4351
+ * @param ctx the parse tree
4352
+ * @return the visitor result
4353
+ */
4354
+ visitAny_identifier;
4355
+ /**
4356
+ * Visit a parse tree produced by `PostgreSQLParser.identifier`.
4357
+ * @param ctx the parse tree
4358
+ * @return the visitor result
4359
+ */
4360
+ visitIdentifier;
4361
+ }
4362
+ //# sourceMappingURL=PostgreSQLParserVisitor.js.map