@pgsql/utils 13.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.
@@ -0,0 +1,4944 @@
1
+ {
2
+ "Alias": {
3
+ "type": {
4
+ "type": "NodeTag",
5
+ "enum": true
6
+ },
7
+ "aliasname": {
8
+ "type": "char"
9
+ },
10
+ "colnames": {
11
+ "type": "List"
12
+ }
13
+ },
14
+ "RangeVar": {
15
+ "type": {
16
+ "type": "NodeTag",
17
+ "enum": true
18
+ },
19
+ "catalogname": {
20
+ "type": "char"
21
+ },
22
+ "schemaname": {
23
+ "type": "char"
24
+ },
25
+ "relname": {
26
+ "type": "char"
27
+ },
28
+ "inh": {
29
+ "type": "bool"
30
+ },
31
+ "relpersistence": {
32
+ "type": "char"
33
+ },
34
+ "alias": {
35
+ "type": "Alias",
36
+ "nested": true
37
+ },
38
+ "location": {
39
+ "type": "int"
40
+ }
41
+ },
42
+ "TableFunc": {
43
+ "type": {
44
+ "type": "NodeTag",
45
+ "enum": true
46
+ },
47
+ "ns_uris": {
48
+ "type": "List"
49
+ },
50
+ "ns_names": {
51
+ "type": "List"
52
+ },
53
+ "docexpr": {
54
+ "type": "Node"
55
+ },
56
+ "rowexpr": {
57
+ "type": "Node"
58
+ },
59
+ "colnames": {
60
+ "type": "List"
61
+ },
62
+ "coltypes": {
63
+ "type": "List"
64
+ },
65
+ "coltypmods": {
66
+ "type": "List"
67
+ },
68
+ "colcollations": {
69
+ "type": "List"
70
+ },
71
+ "colexprs": {
72
+ "type": "List"
73
+ },
74
+ "coldefexprs": {
75
+ "type": "List"
76
+ },
77
+ "notnulls": {
78
+ "type": "Bitmapset"
79
+ },
80
+ "ordinalitycol": {
81
+ "type": "int"
82
+ },
83
+ "location": {
84
+ "type": "int"
85
+ }
86
+ },
87
+ "IntoClause": {
88
+ "type": {
89
+ "type": "NodeTag",
90
+ "enum": true
91
+ },
92
+ "rel": {
93
+ "type": "RangeVar",
94
+ "nested": true
95
+ },
96
+ "colNames": {
97
+ "type": "List"
98
+ },
99
+ "accessMethod": {
100
+ "type": "char"
101
+ },
102
+ "options": {
103
+ "type": "List"
104
+ },
105
+ "onCommit": {
106
+ "type": "OnCommitAction",
107
+ "enum": true
108
+ },
109
+ "tableSpaceName": {
110
+ "type": "char"
111
+ },
112
+ "viewQuery": {
113
+ "type": "Node"
114
+ },
115
+ "skipData": {
116
+ "type": "bool"
117
+ }
118
+ },
119
+ "Expr": {
120
+ "type": {
121
+ "type": "NodeTag",
122
+ "enum": true
123
+ }
124
+ },
125
+ "Var": {
126
+ "xpr": {
127
+ "type": "Expr",
128
+ "nested": true
129
+ },
130
+ "varno": {
131
+ "type": "Index"
132
+ },
133
+ "varattno": {
134
+ "type": "AttrNumber"
135
+ },
136
+ "vartype": {
137
+ "type": "Oid"
138
+ },
139
+ "vartypmod": {
140
+ "type": "int32"
141
+ },
142
+ "varcollid": {
143
+ "type": "Oid"
144
+ },
145
+ "varlevelsup": {
146
+ "type": "Index"
147
+ },
148
+ "varnosyn": {
149
+ "type": "Index"
150
+ },
151
+ "varattnosyn": {
152
+ "type": "AttrNumber"
153
+ },
154
+ "location": {
155
+ "type": "int"
156
+ }
157
+ },
158
+ "Const": {
159
+ "xpr": {
160
+ "type": "Expr",
161
+ "nested": true
162
+ },
163
+ "consttype": {
164
+ "type": "Oid"
165
+ },
166
+ "consttypmod": {
167
+ "type": "int32"
168
+ },
169
+ "constcollid": {
170
+ "type": "Oid"
171
+ },
172
+ "constlen": {
173
+ "type": "int"
174
+ },
175
+ "constvalue": {
176
+ "type": "Datum"
177
+ },
178
+ "constisnull": {
179
+ "type": "bool"
180
+ },
181
+ "constbyval": {
182
+ "type": "bool"
183
+ },
184
+ "location": {
185
+ "type": "int"
186
+ }
187
+ },
188
+ "Param": {
189
+ "xpr": {
190
+ "type": "Expr",
191
+ "nested": true
192
+ },
193
+ "paramkind": {
194
+ "type": "ParamKind",
195
+ "enum": true
196
+ },
197
+ "paramid": {
198
+ "type": "int"
199
+ },
200
+ "paramtype": {
201
+ "type": "Oid"
202
+ },
203
+ "paramtypmod": {
204
+ "type": "int32"
205
+ },
206
+ "paramcollid": {
207
+ "type": "Oid"
208
+ },
209
+ "location": {
210
+ "type": "int"
211
+ }
212
+ },
213
+ "Aggref": {
214
+ "xpr": {
215
+ "type": "Expr",
216
+ "nested": true
217
+ },
218
+ "aggfnoid": {
219
+ "type": "Oid"
220
+ },
221
+ "aggtype": {
222
+ "type": "Oid"
223
+ },
224
+ "aggcollid": {
225
+ "type": "Oid"
226
+ },
227
+ "inputcollid": {
228
+ "type": "Oid"
229
+ },
230
+ "aggtranstype": {
231
+ "type": "Oid"
232
+ },
233
+ "aggargtypes": {
234
+ "type": "List"
235
+ },
236
+ "aggdirectargs": {
237
+ "type": "List"
238
+ },
239
+ "args": {
240
+ "type": "List"
241
+ },
242
+ "aggorder": {
243
+ "type": "List"
244
+ },
245
+ "aggdistinct": {
246
+ "type": "List"
247
+ },
248
+ "aggfilter": {
249
+ "type": "Expr",
250
+ "nested": true
251
+ },
252
+ "aggstar": {
253
+ "type": "bool"
254
+ },
255
+ "aggvariadic": {
256
+ "type": "bool"
257
+ },
258
+ "aggkind": {
259
+ "type": "char"
260
+ },
261
+ "agglevelsup": {
262
+ "type": "Index"
263
+ },
264
+ "aggsplit": {
265
+ "type": "AggSplit",
266
+ "enum": true
267
+ },
268
+ "location": {
269
+ "type": "int"
270
+ }
271
+ },
272
+ "GroupingFunc": {
273
+ "xpr": {
274
+ "type": "Expr",
275
+ "nested": true
276
+ },
277
+ "args": {
278
+ "type": "List"
279
+ },
280
+ "refs": {
281
+ "type": "List"
282
+ },
283
+ "cols": {
284
+ "type": "List"
285
+ },
286
+ "agglevelsup": {
287
+ "type": "Index"
288
+ },
289
+ "location": {
290
+ "type": "int"
291
+ }
292
+ },
293
+ "WindowFunc": {
294
+ "xpr": {
295
+ "type": "Expr",
296
+ "nested": true
297
+ },
298
+ "winfnoid": {
299
+ "type": "Oid"
300
+ },
301
+ "wintype": {
302
+ "type": "Oid"
303
+ },
304
+ "wincollid": {
305
+ "type": "Oid"
306
+ },
307
+ "inputcollid": {
308
+ "type": "Oid"
309
+ },
310
+ "args": {
311
+ "type": "List"
312
+ },
313
+ "aggfilter": {
314
+ "type": "Expr",
315
+ "nested": true
316
+ },
317
+ "winref": {
318
+ "type": "Index"
319
+ },
320
+ "winstar": {
321
+ "type": "bool"
322
+ },
323
+ "winagg": {
324
+ "type": "bool"
325
+ },
326
+ "location": {
327
+ "type": "int"
328
+ }
329
+ },
330
+ "SubscriptingRef": {
331
+ "xpr": {
332
+ "type": "Expr",
333
+ "nested": true
334
+ },
335
+ "refcontainertype": {
336
+ "type": "Oid"
337
+ },
338
+ "refelemtype": {
339
+ "type": "Oid"
340
+ },
341
+ "reftypmod": {
342
+ "type": "int32"
343
+ },
344
+ "refcollid": {
345
+ "type": "Oid"
346
+ },
347
+ "refupperindexpr": {
348
+ "type": "List"
349
+ },
350
+ "reflowerindexpr": {
351
+ "type": "List"
352
+ },
353
+ "refexpr": {
354
+ "type": "Expr",
355
+ "nested": true
356
+ },
357
+ "refassgnexpr": {
358
+ "type": "Expr",
359
+ "nested": true
360
+ }
361
+ },
362
+ "FuncExpr": {
363
+ "xpr": {
364
+ "type": "Expr",
365
+ "nested": true
366
+ },
367
+ "funcid": {
368
+ "type": "Oid"
369
+ },
370
+ "funcresulttype": {
371
+ "type": "Oid"
372
+ },
373
+ "funcretset": {
374
+ "type": "bool"
375
+ },
376
+ "funcvariadic": {
377
+ "type": "bool"
378
+ },
379
+ "funcformat": {
380
+ "type": "CoercionForm",
381
+ "enum": true
382
+ },
383
+ "funccollid": {
384
+ "type": "Oid"
385
+ },
386
+ "inputcollid": {
387
+ "type": "Oid"
388
+ },
389
+ "args": {
390
+ "type": "List"
391
+ },
392
+ "location": {
393
+ "type": "int"
394
+ }
395
+ },
396
+ "NamedArgExpr": {
397
+ "xpr": {
398
+ "type": "Expr",
399
+ "nested": true
400
+ },
401
+ "arg": {
402
+ "type": "Expr",
403
+ "nested": true
404
+ },
405
+ "name": {
406
+ "type": "char"
407
+ },
408
+ "argnumber": {
409
+ "type": "int"
410
+ },
411
+ "location": {
412
+ "type": "int"
413
+ }
414
+ },
415
+ "OpExpr": {
416
+ "xpr": {
417
+ "type": "Expr",
418
+ "nested": true
419
+ },
420
+ "opno": {
421
+ "type": "Oid"
422
+ },
423
+ "opfuncid": {
424
+ "type": "Oid"
425
+ },
426
+ "opresulttype": {
427
+ "type": "Oid"
428
+ },
429
+ "opretset": {
430
+ "type": "bool"
431
+ },
432
+ "opcollid": {
433
+ "type": "Oid"
434
+ },
435
+ "inputcollid": {
436
+ "type": "Oid"
437
+ },
438
+ "args": {
439
+ "type": "List"
440
+ },
441
+ "location": {
442
+ "type": "int"
443
+ }
444
+ },
445
+ "ScalarArrayOpExpr": {
446
+ "xpr": {
447
+ "type": "Expr",
448
+ "nested": true
449
+ },
450
+ "opno": {
451
+ "type": "Oid"
452
+ },
453
+ "opfuncid": {
454
+ "type": "Oid"
455
+ },
456
+ "useOr": {
457
+ "type": "bool"
458
+ },
459
+ "inputcollid": {
460
+ "type": "Oid"
461
+ },
462
+ "args": {
463
+ "type": "List"
464
+ },
465
+ "location": {
466
+ "type": "int"
467
+ }
468
+ },
469
+ "BoolExpr": {
470
+ "xpr": {
471
+ "type": "Expr",
472
+ "nested": true
473
+ },
474
+ "boolop": {
475
+ "type": "BoolExprType",
476
+ "enum": true
477
+ },
478
+ "args": {
479
+ "type": "List"
480
+ },
481
+ "location": {
482
+ "type": "int"
483
+ }
484
+ },
485
+ "SubLink": {
486
+ "xpr": {
487
+ "type": "Expr",
488
+ "nested": true
489
+ },
490
+ "subLinkType": {
491
+ "type": "SubLinkType",
492
+ "enum": true
493
+ },
494
+ "subLinkId": {
495
+ "type": "int"
496
+ },
497
+ "testexpr": {
498
+ "type": "Node"
499
+ },
500
+ "operName": {
501
+ "type": "List"
502
+ },
503
+ "subselect": {
504
+ "type": "Node"
505
+ },
506
+ "location": {
507
+ "type": "int"
508
+ }
509
+ },
510
+ "SubPlan": {
511
+ "xpr": {
512
+ "type": "Expr",
513
+ "nested": true
514
+ },
515
+ "subLinkType": {
516
+ "type": "SubLinkType",
517
+ "enum": true
518
+ },
519
+ "testexpr": {
520
+ "type": "Node"
521
+ },
522
+ "paramIds": {
523
+ "type": "List"
524
+ },
525
+ "plan_id": {
526
+ "type": "int"
527
+ },
528
+ "plan_name": {
529
+ "type": "char"
530
+ },
531
+ "firstColType": {
532
+ "type": "Oid"
533
+ },
534
+ "firstColTypmod": {
535
+ "type": "int32"
536
+ },
537
+ "firstColCollation": {
538
+ "type": "Oid"
539
+ },
540
+ "useHashTable": {
541
+ "type": "bool"
542
+ },
543
+ "unknownEqFalse": {
544
+ "type": "bool"
545
+ },
546
+ "parallel_safe": {
547
+ "type": "bool"
548
+ },
549
+ "setParam": {
550
+ "type": "List"
551
+ },
552
+ "parParam": {
553
+ "type": "List"
554
+ },
555
+ "args": {
556
+ "type": "List"
557
+ },
558
+ "startup_cost": {
559
+ "type": "Cost"
560
+ },
561
+ "per_call_cost": {
562
+ "type": "Cost"
563
+ }
564
+ },
565
+ "AlternativeSubPlan": {
566
+ "xpr": {
567
+ "type": "Expr",
568
+ "nested": true
569
+ },
570
+ "subplans": {
571
+ "type": "List"
572
+ }
573
+ },
574
+ "FieldSelect": {
575
+ "xpr": {
576
+ "type": "Expr",
577
+ "nested": true
578
+ },
579
+ "arg": {
580
+ "type": "Expr",
581
+ "nested": true
582
+ },
583
+ "fieldnum": {
584
+ "type": "AttrNumber"
585
+ },
586
+ "resulttype": {
587
+ "type": "Oid"
588
+ },
589
+ "resulttypmod": {
590
+ "type": "int32"
591
+ },
592
+ "resultcollid": {
593
+ "type": "Oid"
594
+ }
595
+ },
596
+ "FieldStore": {
597
+ "xpr": {
598
+ "type": "Expr",
599
+ "nested": true
600
+ },
601
+ "arg": {
602
+ "type": "Expr",
603
+ "nested": true
604
+ },
605
+ "newvals": {
606
+ "type": "List"
607
+ },
608
+ "fieldnums": {
609
+ "type": "List"
610
+ },
611
+ "resulttype": {
612
+ "type": "Oid"
613
+ }
614
+ },
615
+ "RelabelType": {
616
+ "xpr": {
617
+ "type": "Expr",
618
+ "nested": true
619
+ },
620
+ "arg": {
621
+ "type": "Expr",
622
+ "nested": true
623
+ },
624
+ "resulttype": {
625
+ "type": "Oid"
626
+ },
627
+ "resulttypmod": {
628
+ "type": "int32"
629
+ },
630
+ "resultcollid": {
631
+ "type": "Oid"
632
+ },
633
+ "relabelformat": {
634
+ "type": "CoercionForm",
635
+ "enum": true
636
+ },
637
+ "location": {
638
+ "type": "int"
639
+ }
640
+ },
641
+ "CoerceViaIO": {
642
+ "xpr": {
643
+ "type": "Expr",
644
+ "nested": true
645
+ },
646
+ "arg": {
647
+ "type": "Expr",
648
+ "nested": true
649
+ },
650
+ "resulttype": {
651
+ "type": "Oid"
652
+ },
653
+ "resultcollid": {
654
+ "type": "Oid"
655
+ },
656
+ "coerceformat": {
657
+ "type": "CoercionForm",
658
+ "enum": true
659
+ },
660
+ "location": {
661
+ "type": "int"
662
+ }
663
+ },
664
+ "ArrayCoerceExpr": {
665
+ "xpr": {
666
+ "type": "Expr",
667
+ "nested": true
668
+ },
669
+ "arg": {
670
+ "type": "Expr",
671
+ "nested": true
672
+ },
673
+ "elemexpr": {
674
+ "type": "Expr",
675
+ "nested": true
676
+ },
677
+ "resulttype": {
678
+ "type": "Oid"
679
+ },
680
+ "resulttypmod": {
681
+ "type": "int32"
682
+ },
683
+ "resultcollid": {
684
+ "type": "Oid"
685
+ },
686
+ "coerceformat": {
687
+ "type": "CoercionForm",
688
+ "enum": true
689
+ },
690
+ "location": {
691
+ "type": "int"
692
+ }
693
+ },
694
+ "ConvertRowtypeExpr": {
695
+ "xpr": {
696
+ "type": "Expr",
697
+ "nested": true
698
+ },
699
+ "arg": {
700
+ "type": "Expr",
701
+ "nested": true
702
+ },
703
+ "resulttype": {
704
+ "type": "Oid"
705
+ },
706
+ "convertformat": {
707
+ "type": "CoercionForm",
708
+ "enum": true
709
+ },
710
+ "location": {
711
+ "type": "int"
712
+ }
713
+ },
714
+ "CollateExpr": {
715
+ "xpr": {
716
+ "type": "Expr",
717
+ "nested": true
718
+ },
719
+ "arg": {
720
+ "type": "Expr",
721
+ "nested": true
722
+ },
723
+ "collOid": {
724
+ "type": "Oid"
725
+ },
726
+ "location": {
727
+ "type": "int"
728
+ }
729
+ },
730
+ "CaseExpr": {
731
+ "xpr": {
732
+ "type": "Expr",
733
+ "nested": true
734
+ },
735
+ "casetype": {
736
+ "type": "Oid"
737
+ },
738
+ "casecollid": {
739
+ "type": "Oid"
740
+ },
741
+ "arg": {
742
+ "type": "Expr",
743
+ "nested": true
744
+ },
745
+ "args": {
746
+ "type": "List"
747
+ },
748
+ "defresult": {
749
+ "type": "Expr",
750
+ "nested": true
751
+ },
752
+ "location": {
753
+ "type": "int"
754
+ }
755
+ },
756
+ "CaseWhen": {
757
+ "xpr": {
758
+ "type": "Expr",
759
+ "nested": true
760
+ },
761
+ "expr": {
762
+ "type": "Expr",
763
+ "nested": true
764
+ },
765
+ "result": {
766
+ "type": "Expr",
767
+ "nested": true
768
+ },
769
+ "location": {
770
+ "type": "int"
771
+ }
772
+ },
773
+ "CaseTestExpr": {
774
+ "xpr": {
775
+ "type": "Expr",
776
+ "nested": true
777
+ },
778
+ "typeId": {
779
+ "type": "Oid"
780
+ },
781
+ "typeMod": {
782
+ "type": "int32"
783
+ },
784
+ "collation": {
785
+ "type": "Oid"
786
+ }
787
+ },
788
+ "ArrayExpr": {
789
+ "xpr": {
790
+ "type": "Expr",
791
+ "nested": true
792
+ },
793
+ "array_typeid": {
794
+ "type": "Oid"
795
+ },
796
+ "array_collid": {
797
+ "type": "Oid"
798
+ },
799
+ "element_typeid": {
800
+ "type": "Oid"
801
+ },
802
+ "elements": {
803
+ "type": "List"
804
+ },
805
+ "multidims": {
806
+ "type": "bool"
807
+ },
808
+ "location": {
809
+ "type": "int"
810
+ }
811
+ },
812
+ "RowExpr": {
813
+ "xpr": {
814
+ "type": "Expr",
815
+ "nested": true
816
+ },
817
+ "args": {
818
+ "type": "List"
819
+ },
820
+ "row_typeid": {
821
+ "type": "Oid"
822
+ },
823
+ "row_format": {
824
+ "type": "CoercionForm",
825
+ "enum": true
826
+ },
827
+ "colnames": {
828
+ "type": "List"
829
+ },
830
+ "location": {
831
+ "type": "int"
832
+ }
833
+ },
834
+ "RowCompareExpr": {
835
+ "xpr": {
836
+ "type": "Expr",
837
+ "nested": true
838
+ },
839
+ "rctype": {
840
+ "type": "RowCompareType",
841
+ "enum": true
842
+ },
843
+ "opnos": {
844
+ "type": "List"
845
+ },
846
+ "opfamilies": {
847
+ "type": "List"
848
+ },
849
+ "inputcollids": {
850
+ "type": "List"
851
+ },
852
+ "largs": {
853
+ "type": "List"
854
+ },
855
+ "rargs": {
856
+ "type": "List"
857
+ }
858
+ },
859
+ "CoalesceExpr": {
860
+ "xpr": {
861
+ "type": "Expr",
862
+ "nested": true
863
+ },
864
+ "coalescetype": {
865
+ "type": "Oid"
866
+ },
867
+ "coalescecollid": {
868
+ "type": "Oid"
869
+ },
870
+ "args": {
871
+ "type": "List"
872
+ },
873
+ "location": {
874
+ "type": "int"
875
+ }
876
+ },
877
+ "MinMaxExpr": {
878
+ "xpr": {
879
+ "type": "Expr",
880
+ "nested": true
881
+ },
882
+ "minmaxtype": {
883
+ "type": "Oid"
884
+ },
885
+ "minmaxcollid": {
886
+ "type": "Oid"
887
+ },
888
+ "inputcollid": {
889
+ "type": "Oid"
890
+ },
891
+ "op": {
892
+ "type": "MinMaxOp",
893
+ "enum": true
894
+ },
895
+ "args": {
896
+ "type": "List"
897
+ },
898
+ "location": {
899
+ "type": "int"
900
+ }
901
+ },
902
+ "SQLValueFunction": {
903
+ "xpr": {
904
+ "type": "Expr",
905
+ "nested": true
906
+ },
907
+ "op": {
908
+ "type": "SQLValueFunctionOp",
909
+ "enum": true
910
+ },
911
+ "type": {
912
+ "type": "Oid"
913
+ },
914
+ "typmod": {
915
+ "type": "int32"
916
+ },
917
+ "location": {
918
+ "type": "int"
919
+ }
920
+ },
921
+ "XmlExpr": {
922
+ "xpr": {
923
+ "type": "Expr",
924
+ "nested": true
925
+ },
926
+ "op": {
927
+ "type": "XmlExprOp",
928
+ "enum": true
929
+ },
930
+ "name": {
931
+ "type": "char"
932
+ },
933
+ "named_args": {
934
+ "type": "List"
935
+ },
936
+ "arg_names": {
937
+ "type": "List"
938
+ },
939
+ "args": {
940
+ "type": "List"
941
+ },
942
+ "xmloption": {
943
+ "type": "XmlOptionType",
944
+ "enum": true
945
+ },
946
+ "type": {
947
+ "type": "Oid"
948
+ },
949
+ "typmod": {
950
+ "type": "int32"
951
+ },
952
+ "location": {
953
+ "type": "int"
954
+ }
955
+ },
956
+ "NullTest": {
957
+ "xpr": {
958
+ "type": "Expr",
959
+ "nested": true
960
+ },
961
+ "arg": {
962
+ "type": "Expr",
963
+ "nested": true
964
+ },
965
+ "nulltesttype": {
966
+ "type": "NullTestType",
967
+ "enum": true
968
+ },
969
+ "argisrow": {
970
+ "type": "bool"
971
+ },
972
+ "location": {
973
+ "type": "int"
974
+ }
975
+ },
976
+ "BooleanTest": {
977
+ "xpr": {
978
+ "type": "Expr",
979
+ "nested": true
980
+ },
981
+ "arg": {
982
+ "type": "Expr",
983
+ "nested": true
984
+ },
985
+ "booltesttype": {
986
+ "type": "BoolTestType",
987
+ "enum": true
988
+ },
989
+ "location": {
990
+ "type": "int"
991
+ }
992
+ },
993
+ "CoerceToDomain": {
994
+ "xpr": {
995
+ "type": "Expr",
996
+ "nested": true
997
+ },
998
+ "arg": {
999
+ "type": "Expr",
1000
+ "nested": true
1001
+ },
1002
+ "resulttype": {
1003
+ "type": "Oid"
1004
+ },
1005
+ "resulttypmod": {
1006
+ "type": "int32"
1007
+ },
1008
+ "resultcollid": {
1009
+ "type": "Oid"
1010
+ },
1011
+ "coercionformat": {
1012
+ "type": "CoercionForm",
1013
+ "enum": true
1014
+ },
1015
+ "location": {
1016
+ "type": "int"
1017
+ }
1018
+ },
1019
+ "CoerceToDomainValue": {
1020
+ "xpr": {
1021
+ "type": "Expr",
1022
+ "nested": true
1023
+ },
1024
+ "typeId": {
1025
+ "type": "Oid"
1026
+ },
1027
+ "typeMod": {
1028
+ "type": "int32"
1029
+ },
1030
+ "collation": {
1031
+ "type": "Oid"
1032
+ },
1033
+ "location": {
1034
+ "type": "int"
1035
+ }
1036
+ },
1037
+ "SetToDefault": {
1038
+ "xpr": {
1039
+ "type": "Expr",
1040
+ "nested": true
1041
+ },
1042
+ "typeId": {
1043
+ "type": "Oid"
1044
+ },
1045
+ "typeMod": {
1046
+ "type": "int32"
1047
+ },
1048
+ "collation": {
1049
+ "type": "Oid"
1050
+ },
1051
+ "location": {
1052
+ "type": "int"
1053
+ }
1054
+ },
1055
+ "CurrentOfExpr": {
1056
+ "xpr": {
1057
+ "type": "Expr",
1058
+ "nested": true
1059
+ },
1060
+ "cvarno": {
1061
+ "type": "Index"
1062
+ },
1063
+ "cursor_name": {
1064
+ "type": "char"
1065
+ },
1066
+ "cursor_param": {
1067
+ "type": "int"
1068
+ }
1069
+ },
1070
+ "NextValueExpr": {
1071
+ "xpr": {
1072
+ "type": "Expr",
1073
+ "nested": true
1074
+ },
1075
+ "seqid": {
1076
+ "type": "Oid"
1077
+ },
1078
+ "typeId": {
1079
+ "type": "Oid"
1080
+ }
1081
+ },
1082
+ "InferenceElem": {
1083
+ "xpr": {
1084
+ "type": "Expr",
1085
+ "nested": true
1086
+ },
1087
+ "expr": {
1088
+ "type": "Node"
1089
+ },
1090
+ "infercollid": {
1091
+ "type": "Oid"
1092
+ },
1093
+ "inferopclass": {
1094
+ "type": "Oid"
1095
+ }
1096
+ },
1097
+ "TargetEntry": {
1098
+ "xpr": {
1099
+ "type": "Expr",
1100
+ "nested": true
1101
+ },
1102
+ "expr": {
1103
+ "type": "Expr",
1104
+ "nested": true
1105
+ },
1106
+ "resno": {
1107
+ "type": "AttrNumber"
1108
+ },
1109
+ "resname": {
1110
+ "type": "char"
1111
+ },
1112
+ "ressortgroupref": {
1113
+ "type": "Index"
1114
+ },
1115
+ "resorigtbl": {
1116
+ "type": "Oid"
1117
+ },
1118
+ "resorigcol": {
1119
+ "type": "AttrNumber"
1120
+ },
1121
+ "resjunk": {
1122
+ "type": "bool"
1123
+ }
1124
+ },
1125
+ "RangeTblRef": {
1126
+ "type": {
1127
+ "type": "NodeTag",
1128
+ "enum": true
1129
+ },
1130
+ "rtindex": {
1131
+ "type": "int"
1132
+ }
1133
+ },
1134
+ "JoinExpr": {
1135
+ "type": {
1136
+ "type": "NodeTag",
1137
+ "enum": true
1138
+ },
1139
+ "jointype": {
1140
+ "type": "JoinType",
1141
+ "enum": true
1142
+ },
1143
+ "isNatural": {
1144
+ "type": "bool"
1145
+ },
1146
+ "larg": {
1147
+ "type": "Node"
1148
+ },
1149
+ "rarg": {
1150
+ "type": "Node"
1151
+ },
1152
+ "usingClause": {
1153
+ "type": "List"
1154
+ },
1155
+ "quals": {
1156
+ "type": "Node"
1157
+ },
1158
+ "alias": {
1159
+ "type": "Alias",
1160
+ "nested": true
1161
+ },
1162
+ "rtindex": {
1163
+ "type": "int"
1164
+ }
1165
+ },
1166
+ "FromExpr": {
1167
+ "type": {
1168
+ "type": "NodeTag",
1169
+ "enum": true
1170
+ },
1171
+ "fromlist": {
1172
+ "type": "List"
1173
+ },
1174
+ "quals": {
1175
+ "type": "Node"
1176
+ }
1177
+ },
1178
+ "OnConflictExpr": {
1179
+ "type": {
1180
+ "type": "NodeTag",
1181
+ "enum": true
1182
+ },
1183
+ "action": {
1184
+ "type": "OnConflictAction",
1185
+ "enum": true
1186
+ },
1187
+ "arbiterElems": {
1188
+ "type": "List"
1189
+ },
1190
+ "arbiterWhere": {
1191
+ "type": "Node"
1192
+ },
1193
+ "constraint": {
1194
+ "type": "Oid"
1195
+ },
1196
+ "onConflictSet": {
1197
+ "type": "List"
1198
+ },
1199
+ "onConflictWhere": {
1200
+ "type": "Node"
1201
+ },
1202
+ "exclRelIndex": {
1203
+ "type": "int"
1204
+ },
1205
+ "exclRelTlist": {
1206
+ "type": "List"
1207
+ }
1208
+ },
1209
+ "Query": {
1210
+ "type": {
1211
+ "type": "NodeTag",
1212
+ "enum": true
1213
+ },
1214
+ "commandType": {
1215
+ "type": "CmdType",
1216
+ "enum": true
1217
+ },
1218
+ "querySource": {
1219
+ "type": "QuerySource",
1220
+ "enum": true
1221
+ },
1222
+ "queryId": {
1223
+ "type": "uint64"
1224
+ },
1225
+ "canSetTag": {
1226
+ "type": "bool"
1227
+ },
1228
+ "utilityStmt": {
1229
+ "type": "Node"
1230
+ },
1231
+ "resultRelation": {
1232
+ "type": "int"
1233
+ },
1234
+ "hasAggs": {
1235
+ "type": "bool"
1236
+ },
1237
+ "hasWindowFuncs": {
1238
+ "type": "bool"
1239
+ },
1240
+ "hasTargetSRFs": {
1241
+ "type": "bool"
1242
+ },
1243
+ "hasSubLinks": {
1244
+ "type": "bool"
1245
+ },
1246
+ "hasDistinctOn": {
1247
+ "type": "bool"
1248
+ },
1249
+ "hasRecursive": {
1250
+ "type": "bool"
1251
+ },
1252
+ "hasModifyingCTE": {
1253
+ "type": "bool"
1254
+ },
1255
+ "hasForUpdate": {
1256
+ "type": "bool"
1257
+ },
1258
+ "hasRowSecurity": {
1259
+ "type": "bool"
1260
+ },
1261
+ "cteList": {
1262
+ "type": "List"
1263
+ },
1264
+ "rtable": {
1265
+ "type": "List"
1266
+ },
1267
+ "jointree": {
1268
+ "type": "FromExpr"
1269
+ },
1270
+ "targetList": {
1271
+ "type": "List"
1272
+ },
1273
+ "override": {
1274
+ "type": "OverridingKind",
1275
+ "enum": true
1276
+ },
1277
+ "onConflict": {
1278
+ "type": "OnConflictExpr"
1279
+ },
1280
+ "returningList": {
1281
+ "type": "List"
1282
+ },
1283
+ "groupClause": {
1284
+ "type": "List"
1285
+ },
1286
+ "groupingSets": {
1287
+ "type": "List"
1288
+ },
1289
+ "havingQual": {
1290
+ "type": "Node"
1291
+ },
1292
+ "windowClause": {
1293
+ "type": "List"
1294
+ },
1295
+ "distinctClause": {
1296
+ "type": "List"
1297
+ },
1298
+ "sortClause": {
1299
+ "type": "List"
1300
+ },
1301
+ "limitOffset": {
1302
+ "type": "Node"
1303
+ },
1304
+ "limitCount": {
1305
+ "type": "Node"
1306
+ },
1307
+ "limitOption": {
1308
+ "type": "LimitOption",
1309
+ "enum": true
1310
+ },
1311
+ "rowMarks": {
1312
+ "type": "List"
1313
+ },
1314
+ "setOperations": {
1315
+ "type": "Node"
1316
+ },
1317
+ "constraintDeps": {
1318
+ "type": "List"
1319
+ },
1320
+ "withCheckOptions": {
1321
+ "type": "List"
1322
+ },
1323
+ "stmt_location": {
1324
+ "type": "int"
1325
+ },
1326
+ "stmt_len": {
1327
+ "type": "int"
1328
+ }
1329
+ },
1330
+ "TypeName": {
1331
+ "type": {
1332
+ "type": "NodeTag",
1333
+ "enum": true
1334
+ },
1335
+ "names": {
1336
+ "type": "List"
1337
+ },
1338
+ "typeOid": {
1339
+ "type": "Oid"
1340
+ },
1341
+ "setof": {
1342
+ "type": "bool"
1343
+ },
1344
+ "pct_type": {
1345
+ "type": "bool"
1346
+ },
1347
+ "typmods": {
1348
+ "type": "List"
1349
+ },
1350
+ "typemod": {
1351
+ "type": "int32"
1352
+ },
1353
+ "arrayBounds": {
1354
+ "type": "List"
1355
+ },
1356
+ "location": {
1357
+ "type": "int"
1358
+ }
1359
+ },
1360
+ "ColumnRef": {
1361
+ "type": {
1362
+ "type": "NodeTag",
1363
+ "enum": true
1364
+ },
1365
+ "fields": {
1366
+ "type": "List"
1367
+ },
1368
+ "location": {
1369
+ "type": "int"
1370
+ }
1371
+ },
1372
+ "ParamRef": {
1373
+ "type": {
1374
+ "type": "NodeTag",
1375
+ "enum": true
1376
+ },
1377
+ "number": {
1378
+ "type": "int"
1379
+ },
1380
+ "location": {
1381
+ "type": "int"
1382
+ }
1383
+ },
1384
+ "A_Expr": {
1385
+ "type": {
1386
+ "type": "NodeTag",
1387
+ "enum": true
1388
+ },
1389
+ "kind": {
1390
+ "type": "A_Expr_Kind",
1391
+ "enum": true
1392
+ },
1393
+ "name": {
1394
+ "type": "List"
1395
+ },
1396
+ "lexpr": {
1397
+ "type": "Node"
1398
+ },
1399
+ "rexpr": {
1400
+ "type": "Node"
1401
+ },
1402
+ "location": {
1403
+ "type": "int"
1404
+ }
1405
+ },
1406
+ "A_Const": {
1407
+ "type": {
1408
+ "type": "NodeTag",
1409
+ "enum": true
1410
+ },
1411
+ "val": {
1412
+ "type": "Value"
1413
+ },
1414
+ "location": {
1415
+ "type": "int"
1416
+ }
1417
+ },
1418
+ "TypeCast": {
1419
+ "type": {
1420
+ "type": "NodeTag",
1421
+ "enum": true
1422
+ },
1423
+ "arg": {
1424
+ "type": "Node"
1425
+ },
1426
+ "typeName": {
1427
+ "type": "TypeName",
1428
+ "nested": true
1429
+ },
1430
+ "location": {
1431
+ "type": "int"
1432
+ }
1433
+ },
1434
+ "CollateClause": {
1435
+ "type": {
1436
+ "type": "NodeTag",
1437
+ "enum": true
1438
+ },
1439
+ "arg": {
1440
+ "type": "Node"
1441
+ },
1442
+ "collname": {
1443
+ "type": "List"
1444
+ },
1445
+ "location": {
1446
+ "type": "int"
1447
+ }
1448
+ },
1449
+ "RoleSpec": {
1450
+ "type": {
1451
+ "type": "NodeTag",
1452
+ "enum": true
1453
+ },
1454
+ "roletype": {
1455
+ "type": "RoleSpecType",
1456
+ "enum": true
1457
+ },
1458
+ "rolename": {
1459
+ "type": "char"
1460
+ },
1461
+ "location": {
1462
+ "type": "int"
1463
+ }
1464
+ },
1465
+ "FuncCall": {
1466
+ "type": {
1467
+ "type": "NodeTag",
1468
+ "enum": true
1469
+ },
1470
+ "funcname": {
1471
+ "type": "List"
1472
+ },
1473
+ "args": {
1474
+ "type": "List"
1475
+ },
1476
+ "agg_order": {
1477
+ "type": "List"
1478
+ },
1479
+ "agg_filter": {
1480
+ "type": "Node"
1481
+ },
1482
+ "agg_within_group": {
1483
+ "type": "bool"
1484
+ },
1485
+ "agg_star": {
1486
+ "type": "bool"
1487
+ },
1488
+ "agg_distinct": {
1489
+ "type": "bool"
1490
+ },
1491
+ "func_variadic": {
1492
+ "type": "bool"
1493
+ },
1494
+ "over": {
1495
+ "type": "WindowDef",
1496
+ "nested": true
1497
+ },
1498
+ "location": {
1499
+ "type": "int"
1500
+ }
1501
+ },
1502
+ "A_Star": {
1503
+ "type": {
1504
+ "type": "NodeTag",
1505
+ "enum": true
1506
+ }
1507
+ },
1508
+ "A_Indices": {
1509
+ "type": {
1510
+ "type": "NodeTag",
1511
+ "enum": true
1512
+ },
1513
+ "is_slice": {
1514
+ "type": "bool"
1515
+ },
1516
+ "lidx": {
1517
+ "type": "Node"
1518
+ },
1519
+ "uidx": {
1520
+ "type": "Node"
1521
+ }
1522
+ },
1523
+ "A_Indirection": {
1524
+ "type": {
1525
+ "type": "NodeTag",
1526
+ "enum": true
1527
+ },
1528
+ "arg": {
1529
+ "type": "Node"
1530
+ },
1531
+ "indirection": {
1532
+ "type": "List"
1533
+ }
1534
+ },
1535
+ "A_ArrayExpr": {
1536
+ "type": {
1537
+ "type": "NodeTag",
1538
+ "enum": true
1539
+ },
1540
+ "elements": {
1541
+ "type": "List"
1542
+ },
1543
+ "location": {
1544
+ "type": "int"
1545
+ }
1546
+ },
1547
+ "ResTarget": {
1548
+ "type": {
1549
+ "type": "NodeTag",
1550
+ "enum": true
1551
+ },
1552
+ "name": {
1553
+ "type": "char"
1554
+ },
1555
+ "indirection": {
1556
+ "type": "List"
1557
+ },
1558
+ "val": {
1559
+ "type": "Node"
1560
+ },
1561
+ "location": {
1562
+ "type": "int"
1563
+ }
1564
+ },
1565
+ "MultiAssignRef": {
1566
+ "type": {
1567
+ "type": "NodeTag",
1568
+ "enum": true
1569
+ },
1570
+ "source": {
1571
+ "type": "Node"
1572
+ },
1573
+ "colno": {
1574
+ "type": "int"
1575
+ },
1576
+ "ncolumns": {
1577
+ "type": "int"
1578
+ }
1579
+ },
1580
+ "SortBy": {
1581
+ "type": {
1582
+ "type": "NodeTag",
1583
+ "enum": true
1584
+ },
1585
+ "node": {
1586
+ "type": "Node"
1587
+ },
1588
+ "sortby_dir": {
1589
+ "type": "SortByDir",
1590
+ "enum": true
1591
+ },
1592
+ "sortby_nulls": {
1593
+ "type": "SortByNulls",
1594
+ "enum": true
1595
+ },
1596
+ "useOp": {
1597
+ "type": "List"
1598
+ },
1599
+ "location": {
1600
+ "type": "int"
1601
+ }
1602
+ },
1603
+ "WindowDef": {
1604
+ "type": {
1605
+ "type": "NodeTag",
1606
+ "enum": true
1607
+ },
1608
+ "name": {
1609
+ "type": "char"
1610
+ },
1611
+ "refname": {
1612
+ "type": "char"
1613
+ },
1614
+ "partitionClause": {
1615
+ "type": "List"
1616
+ },
1617
+ "orderClause": {
1618
+ "type": "List"
1619
+ },
1620
+ "frameOptions": {
1621
+ "type": "int"
1622
+ },
1623
+ "startOffset": {
1624
+ "type": "Node"
1625
+ },
1626
+ "endOffset": {
1627
+ "type": "Node"
1628
+ },
1629
+ "location": {
1630
+ "type": "int"
1631
+ }
1632
+ },
1633
+ "RangeSubselect": {
1634
+ "type": {
1635
+ "type": "NodeTag",
1636
+ "enum": true
1637
+ },
1638
+ "lateral": {
1639
+ "type": "bool"
1640
+ },
1641
+ "subquery": {
1642
+ "type": "Node"
1643
+ },
1644
+ "alias": {
1645
+ "type": "Alias"
1646
+ }
1647
+ },
1648
+ "RangeFunction": {
1649
+ "type": {
1650
+ "type": "NodeTag",
1651
+ "enum": true
1652
+ },
1653
+ "lateral": {
1654
+ "type": "bool"
1655
+ },
1656
+ "ordinality": {
1657
+ "type": "bool"
1658
+ },
1659
+ "is_rowsfrom": {
1660
+ "type": "bool"
1661
+ },
1662
+ "functions": {
1663
+ "type": "List"
1664
+ },
1665
+ "alias": {
1666
+ "type": "Alias"
1667
+ },
1668
+ "coldeflist": {
1669
+ "type": "List"
1670
+ }
1671
+ },
1672
+ "RangeTableFunc": {
1673
+ "type": {
1674
+ "type": "NodeTag",
1675
+ "enum": true
1676
+ },
1677
+ "lateral": {
1678
+ "type": "bool"
1679
+ },
1680
+ "docexpr": {
1681
+ "type": "Node"
1682
+ },
1683
+ "rowexpr": {
1684
+ "type": "Node"
1685
+ },
1686
+ "namespaces": {
1687
+ "type": "List"
1688
+ },
1689
+ "columns": {
1690
+ "type": "List"
1691
+ },
1692
+ "alias": {
1693
+ "type": "Alias"
1694
+ },
1695
+ "location": {
1696
+ "type": "int"
1697
+ }
1698
+ },
1699
+ "RangeTableFuncCol": {
1700
+ "type": {
1701
+ "type": "NodeTag",
1702
+ "enum": true
1703
+ },
1704
+ "colname": {
1705
+ "type": "char"
1706
+ },
1707
+ "typeName": {
1708
+ "type": "TypeName",
1709
+ "nested": true
1710
+ },
1711
+ "for_ordinality": {
1712
+ "type": "bool"
1713
+ },
1714
+ "is_not_null": {
1715
+ "type": "bool"
1716
+ },
1717
+ "colexpr": {
1718
+ "type": "Node"
1719
+ },
1720
+ "coldefexpr": {
1721
+ "type": "Node"
1722
+ },
1723
+ "location": {
1724
+ "type": "int"
1725
+ }
1726
+ },
1727
+ "RangeTableSample": {
1728
+ "type": {
1729
+ "type": "NodeTag",
1730
+ "enum": true
1731
+ },
1732
+ "relation": {
1733
+ "type": "Node"
1734
+ },
1735
+ "method": {
1736
+ "type": "List"
1737
+ },
1738
+ "args": {
1739
+ "type": "List"
1740
+ },
1741
+ "repeatable": {
1742
+ "type": "Node"
1743
+ },
1744
+ "location": {
1745
+ "type": "int"
1746
+ }
1747
+ },
1748
+ "ColumnDef": {
1749
+ "type": {
1750
+ "type": "NodeTag",
1751
+ "enum": true
1752
+ },
1753
+ "colname": {
1754
+ "type": "char"
1755
+ },
1756
+ "typeName": {
1757
+ "type": "TypeName",
1758
+ "nested": true
1759
+ },
1760
+ "inhcount": {
1761
+ "type": "int"
1762
+ },
1763
+ "is_local": {
1764
+ "type": "bool"
1765
+ },
1766
+ "is_not_null": {
1767
+ "type": "bool"
1768
+ },
1769
+ "is_from_type": {
1770
+ "type": "bool"
1771
+ },
1772
+ "storage": {
1773
+ "type": "char"
1774
+ },
1775
+ "raw_default": {
1776
+ "type": "Node"
1777
+ },
1778
+ "cooked_default": {
1779
+ "type": "Node"
1780
+ },
1781
+ "identity": {
1782
+ "type": "char"
1783
+ },
1784
+ "identitySequence": {
1785
+ "type": "RangeVar"
1786
+ },
1787
+ "generated": {
1788
+ "type": "char"
1789
+ },
1790
+ "collClause": {
1791
+ "type": "CollateClause",
1792
+ "nested": true
1793
+ },
1794
+ "collOid": {
1795
+ "type": "Oid"
1796
+ },
1797
+ "constraints": {
1798
+ "type": "List"
1799
+ },
1800
+ "fdwoptions": {
1801
+ "type": "List"
1802
+ },
1803
+ "location": {
1804
+ "type": "int"
1805
+ }
1806
+ },
1807
+ "TableLikeClause": {
1808
+ "type": {
1809
+ "type": "NodeTag",
1810
+ "enum": true
1811
+ },
1812
+ "relation": {
1813
+ "type": "RangeVar"
1814
+ },
1815
+ "options": {
1816
+ "type": "bits32"
1817
+ }
1818
+ },
1819
+ "IndexElem": {
1820
+ "type": {
1821
+ "type": "NodeTag",
1822
+ "enum": true
1823
+ },
1824
+ "name": {
1825
+ "type": "char"
1826
+ },
1827
+ "expr": {
1828
+ "type": "Node"
1829
+ },
1830
+ "indexcolname": {
1831
+ "type": "char"
1832
+ },
1833
+ "collation": {
1834
+ "type": "List"
1835
+ },
1836
+ "opclass": {
1837
+ "type": "List"
1838
+ },
1839
+ "opclassopts": {
1840
+ "type": "List"
1841
+ },
1842
+ "ordering": {
1843
+ "type": "SortByDir",
1844
+ "enum": true
1845
+ },
1846
+ "nulls_ordering": {
1847
+ "type": "SortByNulls",
1848
+ "enum": true
1849
+ }
1850
+ },
1851
+ "DefElem": {
1852
+ "type": {
1853
+ "type": "NodeTag",
1854
+ "enum": true
1855
+ },
1856
+ "defnamespace": {
1857
+ "type": "char"
1858
+ },
1859
+ "defname": {
1860
+ "type": "char"
1861
+ },
1862
+ "arg": {
1863
+ "type": "Node"
1864
+ },
1865
+ "defaction": {
1866
+ "type": "DefElemAction",
1867
+ "enum": true
1868
+ },
1869
+ "location": {
1870
+ "type": "int"
1871
+ }
1872
+ },
1873
+ "LockingClause": {
1874
+ "type": {
1875
+ "type": "NodeTag",
1876
+ "enum": true
1877
+ },
1878
+ "lockedRels": {
1879
+ "type": "List"
1880
+ },
1881
+ "strength": {
1882
+ "type": "LockClauseStrength",
1883
+ "enum": true
1884
+ },
1885
+ "waitPolicy": {
1886
+ "type": "LockWaitPolicy",
1887
+ "enum": true
1888
+ }
1889
+ },
1890
+ "XmlSerialize": {
1891
+ "type": {
1892
+ "type": "NodeTag",
1893
+ "enum": true
1894
+ },
1895
+ "xmloption": {
1896
+ "type": "XmlOptionType",
1897
+ "enum": true
1898
+ },
1899
+ "expr": {
1900
+ "type": "Node"
1901
+ },
1902
+ "typeName": {
1903
+ "type": "TypeName",
1904
+ "nested": true
1905
+ },
1906
+ "location": {
1907
+ "type": "int"
1908
+ }
1909
+ },
1910
+ "PartitionElem": {
1911
+ "type": {
1912
+ "type": "NodeTag",
1913
+ "enum": true
1914
+ },
1915
+ "name": {
1916
+ "type": "char"
1917
+ },
1918
+ "expr": {
1919
+ "type": "Node"
1920
+ },
1921
+ "collation": {
1922
+ "type": "List"
1923
+ },
1924
+ "opclass": {
1925
+ "type": "List"
1926
+ },
1927
+ "location": {
1928
+ "type": "int"
1929
+ }
1930
+ },
1931
+ "PartitionSpec": {
1932
+ "type": {
1933
+ "type": "NodeTag",
1934
+ "enum": true
1935
+ },
1936
+ "strategy": {
1937
+ "type": "char"
1938
+ },
1939
+ "partParams": {
1940
+ "type": "List"
1941
+ },
1942
+ "location": {
1943
+ "type": "int"
1944
+ }
1945
+ },
1946
+ "PartitionBoundSpec": {
1947
+ "type": {
1948
+ "type": "NodeTag",
1949
+ "enum": true
1950
+ },
1951
+ "strategy": {
1952
+ "type": "char"
1953
+ },
1954
+ "is_default": {
1955
+ "type": "bool"
1956
+ },
1957
+ "modulus": {
1958
+ "type": "int"
1959
+ },
1960
+ "remainder": {
1961
+ "type": "int"
1962
+ },
1963
+ "listdatums": {
1964
+ "type": "List"
1965
+ },
1966
+ "lowerdatums": {
1967
+ "type": "List"
1968
+ },
1969
+ "upperdatums": {
1970
+ "type": "List"
1971
+ },
1972
+ "location": {
1973
+ "type": "int"
1974
+ }
1975
+ },
1976
+ "PartitionRangeDatum": {
1977
+ "type": {
1978
+ "type": "NodeTag",
1979
+ "enum": true
1980
+ },
1981
+ "kind": {
1982
+ "type": "PartitionRangeDatumKind",
1983
+ "enum": true
1984
+ },
1985
+ "value": {
1986
+ "type": "Node"
1987
+ },
1988
+ "location": {
1989
+ "type": "int"
1990
+ }
1991
+ },
1992
+ "PartitionCmd": {
1993
+ "type": {
1994
+ "type": "NodeTag",
1995
+ "enum": true
1996
+ },
1997
+ "name": {
1998
+ "type": "RangeVar"
1999
+ },
2000
+ "bound": {
2001
+ "type": "PartitionBoundSpec",
2002
+ "nested": true
2003
+ }
2004
+ },
2005
+ "RangeTblEntry": {
2006
+ "type": {
2007
+ "type": "NodeTag",
2008
+ "enum": true
2009
+ },
2010
+ "rtekind": {
2011
+ "type": "RTEKind",
2012
+ "enum": true
2013
+ },
2014
+ "relid": {
2015
+ "type": "Oid"
2016
+ },
2017
+ "relkind": {
2018
+ "type": "char"
2019
+ },
2020
+ "rellockmode": {
2021
+ "type": "int"
2022
+ },
2023
+ "tablesample": {
2024
+ "type": "TableSampleClause",
2025
+ "nested": true
2026
+ },
2027
+ "subquery": {
2028
+ "type": "Query",
2029
+ "nested": true
2030
+ },
2031
+ "security_barrier": {
2032
+ "type": "bool"
2033
+ },
2034
+ "jointype": {
2035
+ "type": "JoinType",
2036
+ "enum": true
2037
+ },
2038
+ "joinmergedcols": {
2039
+ "type": "int"
2040
+ },
2041
+ "joinaliasvars": {
2042
+ "type": "List"
2043
+ },
2044
+ "joinleftcols": {
2045
+ "type": "List"
2046
+ },
2047
+ "joinrightcols": {
2048
+ "type": "List"
2049
+ },
2050
+ "functions": {
2051
+ "type": "List"
2052
+ },
2053
+ "funcordinality": {
2054
+ "type": "bool"
2055
+ },
2056
+ "tablefunc": {
2057
+ "type": "TableFunc"
2058
+ },
2059
+ "values_lists": {
2060
+ "type": "List"
2061
+ },
2062
+ "ctename": {
2063
+ "type": "char"
2064
+ },
2065
+ "ctelevelsup": {
2066
+ "type": "Index"
2067
+ },
2068
+ "self_reference": {
2069
+ "type": "bool"
2070
+ },
2071
+ "coltypes": {
2072
+ "type": "List"
2073
+ },
2074
+ "coltypmods": {
2075
+ "type": "List"
2076
+ },
2077
+ "colcollations": {
2078
+ "type": "List"
2079
+ },
2080
+ "enrname": {
2081
+ "type": "char"
2082
+ },
2083
+ "enrtuples": {
2084
+ "type": "double"
2085
+ },
2086
+ "alias": {
2087
+ "type": "Alias"
2088
+ },
2089
+ "eref": {
2090
+ "type": "Alias"
2091
+ },
2092
+ "lateral": {
2093
+ "type": "bool"
2094
+ },
2095
+ "inh": {
2096
+ "type": "bool"
2097
+ },
2098
+ "inFromCl": {
2099
+ "type": "bool"
2100
+ },
2101
+ "requiredPerms": {
2102
+ "type": "AclMode"
2103
+ },
2104
+ "checkAsUser": {
2105
+ "type": "Oid"
2106
+ },
2107
+ "selectedCols": {
2108
+ "type": "Bitmapset"
2109
+ },
2110
+ "insertedCols": {
2111
+ "type": "Bitmapset"
2112
+ },
2113
+ "updatedCols": {
2114
+ "type": "Bitmapset"
2115
+ },
2116
+ "extraUpdatedCols": {
2117
+ "type": "Bitmapset"
2118
+ },
2119
+ "securityQuals": {
2120
+ "type": "List"
2121
+ }
2122
+ },
2123
+ "RangeTblFunction": {
2124
+ "type": {
2125
+ "type": "NodeTag",
2126
+ "enum": true
2127
+ },
2128
+ "funcexpr": {
2129
+ "type": "Node"
2130
+ },
2131
+ "funccolcount": {
2132
+ "type": "int"
2133
+ },
2134
+ "funccolnames": {
2135
+ "type": "List"
2136
+ },
2137
+ "funccoltypes": {
2138
+ "type": "List"
2139
+ },
2140
+ "funccoltypmods": {
2141
+ "type": "List"
2142
+ },
2143
+ "funccolcollations": {
2144
+ "type": "List"
2145
+ },
2146
+ "funcparams": {
2147
+ "type": "Bitmapset"
2148
+ }
2149
+ },
2150
+ "TableSampleClause": {
2151
+ "type": {
2152
+ "type": "NodeTag",
2153
+ "enum": true
2154
+ },
2155
+ "tsmhandler": {
2156
+ "type": "Oid"
2157
+ },
2158
+ "args": {
2159
+ "type": "List"
2160
+ },
2161
+ "repeatable": {
2162
+ "type": "Expr"
2163
+ }
2164
+ },
2165
+ "WithCheckOption": {
2166
+ "type": {
2167
+ "type": "NodeTag",
2168
+ "enum": true
2169
+ },
2170
+ "kind": {
2171
+ "type": "WCOKind",
2172
+ "enum": true
2173
+ },
2174
+ "relname": {
2175
+ "type": "char"
2176
+ },
2177
+ "polname": {
2178
+ "type": "char"
2179
+ },
2180
+ "qual": {
2181
+ "type": "Node"
2182
+ },
2183
+ "cascaded": {
2184
+ "type": "bool"
2185
+ }
2186
+ },
2187
+ "SortGroupClause": {
2188
+ "type": {
2189
+ "type": "NodeTag",
2190
+ "enum": true
2191
+ },
2192
+ "tleSortGroupRef": {
2193
+ "type": "Index"
2194
+ },
2195
+ "eqop": {
2196
+ "type": "Oid"
2197
+ },
2198
+ "sortop": {
2199
+ "type": "Oid"
2200
+ },
2201
+ "nulls_first": {
2202
+ "type": "bool"
2203
+ },
2204
+ "hashable": {
2205
+ "type": "bool"
2206
+ }
2207
+ },
2208
+ "GroupingSet": {
2209
+ "type": {
2210
+ "type": "NodeTag",
2211
+ "enum": true
2212
+ },
2213
+ "kind": {
2214
+ "type": "GroupingSetKind",
2215
+ "enum": true
2216
+ },
2217
+ "content": {
2218
+ "type": "List"
2219
+ },
2220
+ "location": {
2221
+ "type": "int"
2222
+ }
2223
+ },
2224
+ "WindowClause": {
2225
+ "type": {
2226
+ "type": "NodeTag",
2227
+ "enum": true
2228
+ },
2229
+ "name": {
2230
+ "type": "char"
2231
+ },
2232
+ "refname": {
2233
+ "type": "char"
2234
+ },
2235
+ "partitionClause": {
2236
+ "type": "List"
2237
+ },
2238
+ "orderClause": {
2239
+ "type": "List"
2240
+ },
2241
+ "frameOptions": {
2242
+ "type": "int"
2243
+ },
2244
+ "startOffset": {
2245
+ "type": "Node"
2246
+ },
2247
+ "endOffset": {
2248
+ "type": "Node"
2249
+ },
2250
+ "startInRangeFunc": {
2251
+ "type": "Oid"
2252
+ },
2253
+ "endInRangeFunc": {
2254
+ "type": "Oid"
2255
+ },
2256
+ "inRangeColl": {
2257
+ "type": "Oid"
2258
+ },
2259
+ "inRangeAsc": {
2260
+ "type": "bool"
2261
+ },
2262
+ "inRangeNullsFirst": {
2263
+ "type": "bool"
2264
+ },
2265
+ "winref": {
2266
+ "type": "Index"
2267
+ },
2268
+ "copiedOrder": {
2269
+ "type": "bool"
2270
+ }
2271
+ },
2272
+ "RowMarkClause": {
2273
+ "type": {
2274
+ "type": "NodeTag",
2275
+ "enum": true
2276
+ },
2277
+ "rti": {
2278
+ "type": "Index"
2279
+ },
2280
+ "strength": {
2281
+ "type": "LockClauseStrength",
2282
+ "enum": true
2283
+ },
2284
+ "waitPolicy": {
2285
+ "type": "LockWaitPolicy",
2286
+ "enum": true
2287
+ },
2288
+ "pushedDown": {
2289
+ "type": "bool"
2290
+ }
2291
+ },
2292
+ "WithClause": {
2293
+ "type": {
2294
+ "type": "NodeTag",
2295
+ "enum": true
2296
+ },
2297
+ "ctes": {
2298
+ "type": "List"
2299
+ },
2300
+ "recursive": {
2301
+ "type": "bool"
2302
+ },
2303
+ "location": {
2304
+ "type": "int"
2305
+ }
2306
+ },
2307
+ "InferClause": {
2308
+ "type": {
2309
+ "type": "NodeTag",
2310
+ "enum": true
2311
+ },
2312
+ "indexElems": {
2313
+ "type": "List"
2314
+ },
2315
+ "whereClause": {
2316
+ "type": "Node"
2317
+ },
2318
+ "conname": {
2319
+ "type": "char"
2320
+ },
2321
+ "location": {
2322
+ "type": "int"
2323
+ }
2324
+ },
2325
+ "OnConflictClause": {
2326
+ "type": {
2327
+ "type": "NodeTag",
2328
+ "enum": true
2329
+ },
2330
+ "action": {
2331
+ "type": "OnConflictAction",
2332
+ "enum": true
2333
+ },
2334
+ "infer": {
2335
+ "type": "InferClause",
2336
+ "nested": true
2337
+ },
2338
+ "targetList": {
2339
+ "type": "List"
2340
+ },
2341
+ "whereClause": {
2342
+ "type": "Node"
2343
+ },
2344
+ "location": {
2345
+ "type": "int"
2346
+ }
2347
+ },
2348
+ "CommonTableExpr": {
2349
+ "type": {
2350
+ "type": "NodeTag",
2351
+ "enum": true
2352
+ },
2353
+ "ctename": {
2354
+ "type": "char"
2355
+ },
2356
+ "aliascolnames": {
2357
+ "type": "List"
2358
+ },
2359
+ "ctematerialized": {
2360
+ "type": "CTEMaterialize",
2361
+ "enum": true
2362
+ },
2363
+ "ctequery": {
2364
+ "type": "Node"
2365
+ },
2366
+ "location": {
2367
+ "type": "int"
2368
+ },
2369
+ "cterecursive": {
2370
+ "type": "bool"
2371
+ },
2372
+ "cterefcount": {
2373
+ "type": "int"
2374
+ },
2375
+ "ctecolnames": {
2376
+ "type": "List"
2377
+ },
2378
+ "ctecoltypes": {
2379
+ "type": "List"
2380
+ },
2381
+ "ctecoltypmods": {
2382
+ "type": "List"
2383
+ },
2384
+ "ctecolcollations": {
2385
+ "type": "List"
2386
+ }
2387
+ },
2388
+ "TriggerTransition": {
2389
+ "type": {
2390
+ "type": "NodeTag",
2391
+ "enum": true
2392
+ },
2393
+ "name": {
2394
+ "type": "char"
2395
+ },
2396
+ "isNew": {
2397
+ "type": "bool"
2398
+ },
2399
+ "isTable": {
2400
+ "type": "bool"
2401
+ }
2402
+ },
2403
+ "RawStmt": {
2404
+ "type": {
2405
+ "type": "NodeTag",
2406
+ "enum": true
2407
+ },
2408
+ "stmt": {
2409
+ "type": "Node"
2410
+ },
2411
+ "stmt_location": {
2412
+ "type": "int"
2413
+ },
2414
+ "stmt_len": {
2415
+ "type": "int"
2416
+ }
2417
+ },
2418
+ "InsertStmt": {
2419
+ "type": {
2420
+ "type": "NodeTag",
2421
+ "enum": true
2422
+ },
2423
+ "relation": {
2424
+ "type": "RangeVar"
2425
+ },
2426
+ "cols": {
2427
+ "type": "List"
2428
+ },
2429
+ "selectStmt": {
2430
+ "type": "Node"
2431
+ },
2432
+ "onConflictClause": {
2433
+ "type": "OnConflictClause",
2434
+ "nested": true
2435
+ },
2436
+ "returningList": {
2437
+ "type": "List"
2438
+ },
2439
+ "withClause": {
2440
+ "type": "WithClause",
2441
+ "nested": true
2442
+ },
2443
+ "override": {
2444
+ "type": "OverridingKind",
2445
+ "enum": true
2446
+ }
2447
+ },
2448
+ "DeleteStmt": {
2449
+ "type": {
2450
+ "type": "NodeTag",
2451
+ "enum": true
2452
+ },
2453
+ "relation": {
2454
+ "type": "RangeVar"
2455
+ },
2456
+ "usingClause": {
2457
+ "type": "List"
2458
+ },
2459
+ "whereClause": {
2460
+ "type": "Node"
2461
+ },
2462
+ "returningList": {
2463
+ "type": "List"
2464
+ },
2465
+ "withClause": {
2466
+ "type": "WithClause",
2467
+ "nested": true
2468
+ }
2469
+ },
2470
+ "UpdateStmt": {
2471
+ "type": {
2472
+ "type": "NodeTag",
2473
+ "enum": true
2474
+ },
2475
+ "relation": {
2476
+ "type": "RangeVar"
2477
+ },
2478
+ "targetList": {
2479
+ "type": "List"
2480
+ },
2481
+ "whereClause": {
2482
+ "type": "Node"
2483
+ },
2484
+ "fromClause": {
2485
+ "type": "List"
2486
+ },
2487
+ "returningList": {
2488
+ "type": "List"
2489
+ },
2490
+ "withClause": {
2491
+ "type": "WithClause",
2492
+ "nested": true
2493
+ }
2494
+ },
2495
+ "SelectStmt": {
2496
+ "type": {
2497
+ "type": "NodeTag",
2498
+ "enum": true
2499
+ },
2500
+ "distinctClause": {
2501
+ "type": "List"
2502
+ },
2503
+ "intoClause": {
2504
+ "type": "IntoClause"
2505
+ },
2506
+ "targetList": {
2507
+ "type": "List"
2508
+ },
2509
+ "fromClause": {
2510
+ "type": "List"
2511
+ },
2512
+ "whereClause": {
2513
+ "type": "Node"
2514
+ },
2515
+ "groupClause": {
2516
+ "type": "List"
2517
+ },
2518
+ "havingClause": {
2519
+ "type": "Node"
2520
+ },
2521
+ "windowClause": {
2522
+ "type": "List"
2523
+ },
2524
+ "valuesLists": {
2525
+ "type": "List"
2526
+ },
2527
+ "sortClause": {
2528
+ "type": "List"
2529
+ },
2530
+ "limitOffset": {
2531
+ "type": "Node"
2532
+ },
2533
+ "limitCount": {
2534
+ "type": "Node"
2535
+ },
2536
+ "limitOption": {
2537
+ "type": "LimitOption",
2538
+ "enum": true
2539
+ },
2540
+ "lockingClause": {
2541
+ "type": "List"
2542
+ },
2543
+ "withClause": {
2544
+ "type": "WithClause",
2545
+ "nested": true
2546
+ },
2547
+ "op": {
2548
+ "type": "SetOperation",
2549
+ "enum": true
2550
+ },
2551
+ "all": {
2552
+ "type": "bool"
2553
+ },
2554
+ "larg": {
2555
+ "type": "SelectStmt",
2556
+ "nested": true
2557
+ },
2558
+ "rarg": {
2559
+ "type": "SelectStmt",
2560
+ "nested": true
2561
+ }
2562
+ },
2563
+ "SetOperationStmt": {
2564
+ "type": {
2565
+ "type": "NodeTag",
2566
+ "enum": true
2567
+ },
2568
+ "op": {
2569
+ "type": "SetOperation",
2570
+ "enum": true
2571
+ },
2572
+ "all": {
2573
+ "type": "bool"
2574
+ },
2575
+ "larg": {
2576
+ "type": "Node"
2577
+ },
2578
+ "rarg": {
2579
+ "type": "Node"
2580
+ },
2581
+ "colTypes": {
2582
+ "type": "List"
2583
+ },
2584
+ "colTypmods": {
2585
+ "type": "List"
2586
+ },
2587
+ "colCollations": {
2588
+ "type": "List"
2589
+ },
2590
+ "groupClauses": {
2591
+ "type": "List"
2592
+ }
2593
+ },
2594
+ "CreateSchemaStmt": {
2595
+ "type": {
2596
+ "type": "NodeTag",
2597
+ "enum": true
2598
+ },
2599
+ "schemaname": {
2600
+ "type": "char"
2601
+ },
2602
+ "authrole": {
2603
+ "type": "RoleSpec",
2604
+ "nested": true
2605
+ },
2606
+ "schemaElts": {
2607
+ "type": "List"
2608
+ },
2609
+ "if_not_exists": {
2610
+ "type": "bool"
2611
+ }
2612
+ },
2613
+ "AlterTableStmt": {
2614
+ "type": {
2615
+ "type": "NodeTag",
2616
+ "enum": true
2617
+ },
2618
+ "relation": {
2619
+ "type": "RangeVar"
2620
+ },
2621
+ "cmds": {
2622
+ "type": "List"
2623
+ },
2624
+ "relkind": {
2625
+ "type": "ObjectType",
2626
+ "enum": true
2627
+ },
2628
+ "missing_ok": {
2629
+ "type": "bool"
2630
+ }
2631
+ },
2632
+ "ReplicaIdentityStmt": {
2633
+ "type": {
2634
+ "type": "NodeTag",
2635
+ "enum": true
2636
+ },
2637
+ "identity_type": {
2638
+ "type": "char"
2639
+ },
2640
+ "name": {
2641
+ "type": "char"
2642
+ }
2643
+ },
2644
+ "AlterTableCmd": {
2645
+ "type": {
2646
+ "type": "NodeTag",
2647
+ "enum": true
2648
+ },
2649
+ "subtype": {
2650
+ "type": "AlterTableType",
2651
+ "enum": true
2652
+ },
2653
+ "name": {
2654
+ "type": "char"
2655
+ },
2656
+ "num": {
2657
+ "type": "int16"
2658
+ },
2659
+ "newowner": {
2660
+ "type": "RoleSpec",
2661
+ "nested": true
2662
+ },
2663
+ "def": {
2664
+ "type": "Node"
2665
+ },
2666
+ "behavior": {
2667
+ "type": "DropBehavior",
2668
+ "enum": true
2669
+ },
2670
+ "missing_ok": {
2671
+ "type": "bool"
2672
+ }
2673
+ },
2674
+ "AlterCollationStmt": {
2675
+ "type": {
2676
+ "type": "NodeTag",
2677
+ "enum": true
2678
+ },
2679
+ "collname": {
2680
+ "type": "List"
2681
+ }
2682
+ },
2683
+ "AlterDomainStmt": {
2684
+ "type": {
2685
+ "type": "NodeTag",
2686
+ "enum": true
2687
+ },
2688
+ "subtype": {
2689
+ "type": "char"
2690
+ },
2691
+ "typeName": {
2692
+ "type": "List"
2693
+ },
2694
+ "name": {
2695
+ "type": "char"
2696
+ },
2697
+ "def": {
2698
+ "type": "Node"
2699
+ },
2700
+ "behavior": {
2701
+ "type": "DropBehavior",
2702
+ "enum": true
2703
+ },
2704
+ "missing_ok": {
2705
+ "type": "bool"
2706
+ }
2707
+ },
2708
+ "GrantStmt": {
2709
+ "type": {
2710
+ "type": "NodeTag",
2711
+ "enum": true
2712
+ },
2713
+ "is_grant": {
2714
+ "type": "bool"
2715
+ },
2716
+ "targtype": {
2717
+ "type": "GrantTargetType",
2718
+ "enum": true
2719
+ },
2720
+ "objtype": {
2721
+ "type": "ObjectType",
2722
+ "enum": true
2723
+ },
2724
+ "objects": {
2725
+ "type": "List"
2726
+ },
2727
+ "privileges": {
2728
+ "type": "List"
2729
+ },
2730
+ "grantees": {
2731
+ "type": "List"
2732
+ },
2733
+ "grant_option": {
2734
+ "type": "bool"
2735
+ },
2736
+ "behavior": {
2737
+ "type": "DropBehavior",
2738
+ "enum": true
2739
+ }
2740
+ },
2741
+ "ObjectWithArgs": {
2742
+ "type": {
2743
+ "type": "NodeTag",
2744
+ "enum": true
2745
+ },
2746
+ "objname": {
2747
+ "type": "List"
2748
+ },
2749
+ "objargs": {
2750
+ "type": "List"
2751
+ },
2752
+ "args_unspecified": {
2753
+ "type": "bool"
2754
+ }
2755
+ },
2756
+ "AccessPriv": {
2757
+ "type": {
2758
+ "type": "NodeTag",
2759
+ "enum": true
2760
+ },
2761
+ "priv_name": {
2762
+ "type": "char"
2763
+ },
2764
+ "cols": {
2765
+ "type": "List"
2766
+ }
2767
+ },
2768
+ "GrantRoleStmt": {
2769
+ "type": {
2770
+ "type": "NodeTag",
2771
+ "enum": true
2772
+ },
2773
+ "granted_roles": {
2774
+ "type": "List"
2775
+ },
2776
+ "grantee_roles": {
2777
+ "type": "List"
2778
+ },
2779
+ "is_grant": {
2780
+ "type": "bool"
2781
+ },
2782
+ "admin_opt": {
2783
+ "type": "bool"
2784
+ },
2785
+ "grantor": {
2786
+ "type": "RoleSpec",
2787
+ "nested": true
2788
+ },
2789
+ "behavior": {
2790
+ "type": "DropBehavior",
2791
+ "enum": true
2792
+ }
2793
+ },
2794
+ "AlterDefaultPrivilegesStmt": {
2795
+ "type": {
2796
+ "type": "NodeTag",
2797
+ "enum": true
2798
+ },
2799
+ "options": {
2800
+ "type": "List"
2801
+ },
2802
+ "action": {
2803
+ "type": "GrantStmt",
2804
+ "nested": true
2805
+ }
2806
+ },
2807
+ "CopyStmt": {
2808
+ "type": {
2809
+ "type": "NodeTag",
2810
+ "enum": true
2811
+ },
2812
+ "relation": {
2813
+ "type": "RangeVar"
2814
+ },
2815
+ "query": {
2816
+ "type": "Node"
2817
+ },
2818
+ "attlist": {
2819
+ "type": "List"
2820
+ },
2821
+ "is_from": {
2822
+ "type": "bool"
2823
+ },
2824
+ "is_program": {
2825
+ "type": "bool"
2826
+ },
2827
+ "filename": {
2828
+ "type": "char"
2829
+ },
2830
+ "options": {
2831
+ "type": "List"
2832
+ },
2833
+ "whereClause": {
2834
+ "type": "Node"
2835
+ }
2836
+ },
2837
+ "VariableSetStmt": {
2838
+ "type": {
2839
+ "type": "NodeTag",
2840
+ "enum": true
2841
+ },
2842
+ "kind": {
2843
+ "type": "VariableSetKind",
2844
+ "enum": true
2845
+ },
2846
+ "name": {
2847
+ "type": "char"
2848
+ },
2849
+ "args": {
2850
+ "type": "List"
2851
+ },
2852
+ "is_local": {
2853
+ "type": "bool"
2854
+ }
2855
+ },
2856
+ "VariableShowStmt": {
2857
+ "type": {
2858
+ "type": "NodeTag",
2859
+ "enum": true
2860
+ },
2861
+ "name": {
2862
+ "type": "char"
2863
+ }
2864
+ },
2865
+ "CreateStmt": {
2866
+ "type": {
2867
+ "type": "NodeTag",
2868
+ "enum": true
2869
+ },
2870
+ "relation": {
2871
+ "type": "RangeVar"
2872
+ },
2873
+ "tableElts": {
2874
+ "type": "List"
2875
+ },
2876
+ "inhRelations": {
2877
+ "type": "List"
2878
+ },
2879
+ "partbound": {
2880
+ "type": "PartitionBoundSpec",
2881
+ "nested": true
2882
+ },
2883
+ "partspec": {
2884
+ "type": "PartitionSpec",
2885
+ "nested": true
2886
+ },
2887
+ "ofTypename": {
2888
+ "type": "TypeName",
2889
+ "nested": true
2890
+ },
2891
+ "constraints": {
2892
+ "type": "List"
2893
+ },
2894
+ "options": {
2895
+ "type": "List"
2896
+ },
2897
+ "oncommit": {
2898
+ "type": "OnCommitAction",
2899
+ "enum": true
2900
+ },
2901
+ "tablespacename": {
2902
+ "type": "char"
2903
+ },
2904
+ "accessMethod": {
2905
+ "type": "char"
2906
+ },
2907
+ "if_not_exists": {
2908
+ "type": "bool"
2909
+ }
2910
+ },
2911
+ "Constraint": {
2912
+ "type": {
2913
+ "type": "NodeTag",
2914
+ "enum": true
2915
+ },
2916
+ "contype": {
2917
+ "type": "ConstrType",
2918
+ "enum": true
2919
+ },
2920
+ "conname": {
2921
+ "type": "char"
2922
+ },
2923
+ "deferrable": {
2924
+ "type": "bool"
2925
+ },
2926
+ "initdeferred": {
2927
+ "type": "bool"
2928
+ },
2929
+ "location": {
2930
+ "type": "int"
2931
+ },
2932
+ "is_no_inherit": {
2933
+ "type": "bool"
2934
+ },
2935
+ "raw_expr": {
2936
+ "type": "Node"
2937
+ },
2938
+ "cooked_expr": {
2939
+ "type": "char"
2940
+ },
2941
+ "generated_when": {
2942
+ "type": "char"
2943
+ },
2944
+ "keys": {
2945
+ "type": "List"
2946
+ },
2947
+ "including": {
2948
+ "type": "List"
2949
+ },
2950
+ "exclusions": {
2951
+ "type": "List"
2952
+ },
2953
+ "options": {
2954
+ "type": "List"
2955
+ },
2956
+ "indexname": {
2957
+ "type": "char"
2958
+ },
2959
+ "indexspace": {
2960
+ "type": "char"
2961
+ },
2962
+ "reset_default_tblspc": {
2963
+ "type": "bool"
2964
+ },
2965
+ "access_method": {
2966
+ "type": "char"
2967
+ },
2968
+ "where_clause": {
2969
+ "type": "Node"
2970
+ },
2971
+ "pktable": {
2972
+ "type": "RangeVar"
2973
+ },
2974
+ "fk_attrs": {
2975
+ "type": "List"
2976
+ },
2977
+ "pk_attrs": {
2978
+ "type": "List"
2979
+ },
2980
+ "fk_matchtype": {
2981
+ "type": "char"
2982
+ },
2983
+ "fk_upd_action": {
2984
+ "type": "char"
2985
+ },
2986
+ "fk_del_action": {
2987
+ "type": "char"
2988
+ },
2989
+ "old_conpfeqop": {
2990
+ "type": "List"
2991
+ },
2992
+ "old_pktable_oid": {
2993
+ "type": "Oid"
2994
+ },
2995
+ "skip_validation": {
2996
+ "type": "bool"
2997
+ },
2998
+ "initially_valid": {
2999
+ "type": "bool"
3000
+ }
3001
+ },
3002
+ "CreateTableSpaceStmt": {
3003
+ "type": {
3004
+ "type": "NodeTag",
3005
+ "enum": true
3006
+ },
3007
+ "tablespacename": {
3008
+ "type": "char"
3009
+ },
3010
+ "owner": {
3011
+ "type": "RoleSpec",
3012
+ "nested": true
3013
+ },
3014
+ "location": {
3015
+ "type": "char"
3016
+ },
3017
+ "options": {
3018
+ "type": "List"
3019
+ }
3020
+ },
3021
+ "DropTableSpaceStmt": {
3022
+ "type": {
3023
+ "type": "NodeTag",
3024
+ "enum": true
3025
+ },
3026
+ "tablespacename": {
3027
+ "type": "char"
3028
+ },
3029
+ "missing_ok": {
3030
+ "type": "bool"
3031
+ }
3032
+ },
3033
+ "AlterTableSpaceOptionsStmt": {
3034
+ "type": {
3035
+ "type": "NodeTag",
3036
+ "enum": true
3037
+ },
3038
+ "tablespacename": {
3039
+ "type": "char"
3040
+ },
3041
+ "options": {
3042
+ "type": "List"
3043
+ },
3044
+ "isReset": {
3045
+ "type": "bool"
3046
+ }
3047
+ },
3048
+ "AlterTableMoveAllStmt": {
3049
+ "type": {
3050
+ "type": "NodeTag",
3051
+ "enum": true
3052
+ },
3053
+ "orig_tablespacename": {
3054
+ "type": "char"
3055
+ },
3056
+ "objtype": {
3057
+ "type": "ObjectType",
3058
+ "enum": true
3059
+ },
3060
+ "roles": {
3061
+ "type": "List"
3062
+ },
3063
+ "new_tablespacename": {
3064
+ "type": "char"
3065
+ },
3066
+ "nowait": {
3067
+ "type": "bool"
3068
+ }
3069
+ },
3070
+ "CreateExtensionStmt": {
3071
+ "type": {
3072
+ "type": "NodeTag",
3073
+ "enum": true
3074
+ },
3075
+ "extname": {
3076
+ "type": "char"
3077
+ },
3078
+ "if_not_exists": {
3079
+ "type": "bool"
3080
+ },
3081
+ "options": {
3082
+ "type": "List"
3083
+ }
3084
+ },
3085
+ "AlterExtensionStmt": {
3086
+ "type": {
3087
+ "type": "NodeTag",
3088
+ "enum": true
3089
+ },
3090
+ "extname": {
3091
+ "type": "char"
3092
+ },
3093
+ "options": {
3094
+ "type": "List"
3095
+ }
3096
+ },
3097
+ "AlterExtensionContentsStmt": {
3098
+ "type": {
3099
+ "type": "NodeTag",
3100
+ "enum": true
3101
+ },
3102
+ "extname": {
3103
+ "type": "char"
3104
+ },
3105
+ "action": {
3106
+ "type": "int"
3107
+ },
3108
+ "objtype": {
3109
+ "type": "ObjectType",
3110
+ "enum": true
3111
+ },
3112
+ "object": {
3113
+ "type": "Node"
3114
+ }
3115
+ },
3116
+ "CreateFdwStmt": {
3117
+ "type": {
3118
+ "type": "NodeTag",
3119
+ "enum": true
3120
+ },
3121
+ "fdwname": {
3122
+ "type": "char"
3123
+ },
3124
+ "func_options": {
3125
+ "type": "List"
3126
+ },
3127
+ "options": {
3128
+ "type": "List"
3129
+ }
3130
+ },
3131
+ "AlterFdwStmt": {
3132
+ "type": {
3133
+ "type": "NodeTag",
3134
+ "enum": true
3135
+ },
3136
+ "fdwname": {
3137
+ "type": "char"
3138
+ },
3139
+ "func_options": {
3140
+ "type": "List"
3141
+ },
3142
+ "options": {
3143
+ "type": "List"
3144
+ }
3145
+ },
3146
+ "CreateForeignServerStmt": {
3147
+ "type": {
3148
+ "type": "NodeTag",
3149
+ "enum": true
3150
+ },
3151
+ "servername": {
3152
+ "type": "char"
3153
+ },
3154
+ "servertype": {
3155
+ "type": "char"
3156
+ },
3157
+ "version": {
3158
+ "type": "char"
3159
+ },
3160
+ "fdwname": {
3161
+ "type": "char"
3162
+ },
3163
+ "if_not_exists": {
3164
+ "type": "bool"
3165
+ },
3166
+ "options": {
3167
+ "type": "List"
3168
+ }
3169
+ },
3170
+ "AlterForeignServerStmt": {
3171
+ "type": {
3172
+ "type": "NodeTag",
3173
+ "enum": true
3174
+ },
3175
+ "servername": {
3176
+ "type": "char"
3177
+ },
3178
+ "version": {
3179
+ "type": "char"
3180
+ },
3181
+ "options": {
3182
+ "type": "List"
3183
+ },
3184
+ "has_version": {
3185
+ "type": "bool"
3186
+ }
3187
+ },
3188
+ "CreateForeignTableStmt": {
3189
+ "base": {
3190
+ "type": "CreateStmt",
3191
+ "nested": true
3192
+ },
3193
+ "servername": {
3194
+ "type": "char"
3195
+ },
3196
+ "options": {
3197
+ "type": "List"
3198
+ }
3199
+ },
3200
+ "CreateUserMappingStmt": {
3201
+ "type": {
3202
+ "type": "NodeTag",
3203
+ "enum": true
3204
+ },
3205
+ "user": {
3206
+ "type": "RoleSpec",
3207
+ "nested": true
3208
+ },
3209
+ "servername": {
3210
+ "type": "char"
3211
+ },
3212
+ "if_not_exists": {
3213
+ "type": "bool"
3214
+ },
3215
+ "options": {
3216
+ "type": "List"
3217
+ }
3218
+ },
3219
+ "AlterUserMappingStmt": {
3220
+ "type": {
3221
+ "type": "NodeTag",
3222
+ "enum": true
3223
+ },
3224
+ "user": {
3225
+ "type": "RoleSpec",
3226
+ "nested": true
3227
+ },
3228
+ "servername": {
3229
+ "type": "char"
3230
+ },
3231
+ "options": {
3232
+ "type": "List"
3233
+ }
3234
+ },
3235
+ "DropUserMappingStmt": {
3236
+ "type": {
3237
+ "type": "NodeTag",
3238
+ "enum": true
3239
+ },
3240
+ "user": {
3241
+ "type": "RoleSpec",
3242
+ "nested": true
3243
+ },
3244
+ "servername": {
3245
+ "type": "char"
3246
+ },
3247
+ "missing_ok": {
3248
+ "type": "bool"
3249
+ }
3250
+ },
3251
+ "ImportForeignSchemaStmt": {
3252
+ "type": {
3253
+ "type": "NodeTag",
3254
+ "enum": true
3255
+ },
3256
+ "server_name": {
3257
+ "type": "char"
3258
+ },
3259
+ "remote_schema": {
3260
+ "type": "char"
3261
+ },
3262
+ "local_schema": {
3263
+ "type": "char"
3264
+ },
3265
+ "list_type": {
3266
+ "type": "ImportForeignSchemaType",
3267
+ "enum": true
3268
+ },
3269
+ "table_list": {
3270
+ "type": "List"
3271
+ },
3272
+ "options": {
3273
+ "type": "List"
3274
+ }
3275
+ },
3276
+ "CreatePolicyStmt": {
3277
+ "type": {
3278
+ "type": "NodeTag",
3279
+ "enum": true
3280
+ },
3281
+ "policy_name": {
3282
+ "type": "char"
3283
+ },
3284
+ "table": {
3285
+ "type": "RangeVar"
3286
+ },
3287
+ "cmd_name": {
3288
+ "type": "char"
3289
+ },
3290
+ "permissive": {
3291
+ "type": "bool"
3292
+ },
3293
+ "roles": {
3294
+ "type": "List"
3295
+ },
3296
+ "qual": {
3297
+ "type": "Node"
3298
+ },
3299
+ "with_check": {
3300
+ "type": "Node"
3301
+ }
3302
+ },
3303
+ "AlterPolicyStmt": {
3304
+ "type": {
3305
+ "type": "NodeTag",
3306
+ "enum": true
3307
+ },
3308
+ "policy_name": {
3309
+ "type": "char"
3310
+ },
3311
+ "table": {
3312
+ "type": "RangeVar"
3313
+ },
3314
+ "roles": {
3315
+ "type": "List"
3316
+ },
3317
+ "qual": {
3318
+ "type": "Node"
3319
+ },
3320
+ "with_check": {
3321
+ "type": "Node"
3322
+ }
3323
+ },
3324
+ "CreateAmStmt": {
3325
+ "type": {
3326
+ "type": "NodeTag",
3327
+ "enum": true
3328
+ },
3329
+ "amname": {
3330
+ "type": "char"
3331
+ },
3332
+ "handler_name": {
3333
+ "type": "List"
3334
+ },
3335
+ "amtype": {
3336
+ "type": "char"
3337
+ }
3338
+ },
3339
+ "CreateTrigStmt": {
3340
+ "type": {
3341
+ "type": "NodeTag",
3342
+ "enum": true
3343
+ },
3344
+ "trigname": {
3345
+ "type": "char"
3346
+ },
3347
+ "relation": {
3348
+ "type": "RangeVar"
3349
+ },
3350
+ "funcname": {
3351
+ "type": "List"
3352
+ },
3353
+ "args": {
3354
+ "type": "List"
3355
+ },
3356
+ "row": {
3357
+ "type": "bool"
3358
+ },
3359
+ "timing": {
3360
+ "type": "int16"
3361
+ },
3362
+ "events": {
3363
+ "type": "int16"
3364
+ },
3365
+ "columns": {
3366
+ "type": "List"
3367
+ },
3368
+ "whenClause": {
3369
+ "type": "Node"
3370
+ },
3371
+ "isconstraint": {
3372
+ "type": "bool"
3373
+ },
3374
+ "transitionRels": {
3375
+ "type": "List"
3376
+ },
3377
+ "deferrable": {
3378
+ "type": "bool"
3379
+ },
3380
+ "initdeferred": {
3381
+ "type": "bool"
3382
+ },
3383
+ "constrrel": {
3384
+ "type": "RangeVar"
3385
+ }
3386
+ },
3387
+ "CreateEventTrigStmt": {
3388
+ "type": {
3389
+ "type": "NodeTag",
3390
+ "enum": true
3391
+ },
3392
+ "trigname": {
3393
+ "type": "char"
3394
+ },
3395
+ "eventname": {
3396
+ "type": "char"
3397
+ },
3398
+ "whenclause": {
3399
+ "type": "List"
3400
+ },
3401
+ "funcname": {
3402
+ "type": "List"
3403
+ }
3404
+ },
3405
+ "AlterEventTrigStmt": {
3406
+ "type": {
3407
+ "type": "NodeTag",
3408
+ "enum": true
3409
+ },
3410
+ "trigname": {
3411
+ "type": "char"
3412
+ },
3413
+ "tgenabled": {
3414
+ "type": "char"
3415
+ }
3416
+ },
3417
+ "CreatePLangStmt": {
3418
+ "type": {
3419
+ "type": "NodeTag",
3420
+ "enum": true
3421
+ },
3422
+ "replace": {
3423
+ "type": "bool"
3424
+ },
3425
+ "plname": {
3426
+ "type": "char"
3427
+ },
3428
+ "plhandler": {
3429
+ "type": "List"
3430
+ },
3431
+ "plinline": {
3432
+ "type": "List"
3433
+ },
3434
+ "plvalidator": {
3435
+ "type": "List"
3436
+ },
3437
+ "pltrusted": {
3438
+ "type": "bool"
3439
+ }
3440
+ },
3441
+ "CreateRoleStmt": {
3442
+ "type": {
3443
+ "type": "NodeTag",
3444
+ "enum": true
3445
+ },
3446
+ "stmt_type": {
3447
+ "type": "RoleStmtType",
3448
+ "enum": true
3449
+ },
3450
+ "role": {
3451
+ "type": "char"
3452
+ },
3453
+ "options": {
3454
+ "type": "List"
3455
+ }
3456
+ },
3457
+ "AlterRoleStmt": {
3458
+ "type": {
3459
+ "type": "NodeTag",
3460
+ "enum": true
3461
+ },
3462
+ "role": {
3463
+ "type": "RoleSpec",
3464
+ "nested": true
3465
+ },
3466
+ "options": {
3467
+ "type": "List"
3468
+ },
3469
+ "action": {
3470
+ "type": "int"
3471
+ }
3472
+ },
3473
+ "AlterRoleSetStmt": {
3474
+ "type": {
3475
+ "type": "NodeTag",
3476
+ "enum": true
3477
+ },
3478
+ "role": {
3479
+ "type": "RoleSpec",
3480
+ "nested": true
3481
+ },
3482
+ "database": {
3483
+ "type": "char"
3484
+ },
3485
+ "setstmt": {
3486
+ "type": "VariableSetStmt",
3487
+ "nested": true
3488
+ }
3489
+ },
3490
+ "DropRoleStmt": {
3491
+ "type": {
3492
+ "type": "NodeTag",
3493
+ "enum": true
3494
+ },
3495
+ "roles": {
3496
+ "type": "List"
3497
+ },
3498
+ "missing_ok": {
3499
+ "type": "bool"
3500
+ }
3501
+ },
3502
+ "CreateSeqStmt": {
3503
+ "type": {
3504
+ "type": "NodeTag",
3505
+ "enum": true
3506
+ },
3507
+ "sequence": {
3508
+ "type": "RangeVar"
3509
+ },
3510
+ "options": {
3511
+ "type": "List"
3512
+ },
3513
+ "ownerId": {
3514
+ "type": "Oid"
3515
+ },
3516
+ "for_identity": {
3517
+ "type": "bool"
3518
+ },
3519
+ "if_not_exists": {
3520
+ "type": "bool"
3521
+ }
3522
+ },
3523
+ "AlterSeqStmt": {
3524
+ "type": {
3525
+ "type": "NodeTag",
3526
+ "enum": true
3527
+ },
3528
+ "sequence": {
3529
+ "type": "RangeVar"
3530
+ },
3531
+ "options": {
3532
+ "type": "List"
3533
+ },
3534
+ "for_identity": {
3535
+ "type": "bool"
3536
+ },
3537
+ "missing_ok": {
3538
+ "type": "bool"
3539
+ }
3540
+ },
3541
+ "DefineStmt": {
3542
+ "type": {
3543
+ "type": "NodeTag",
3544
+ "enum": true
3545
+ },
3546
+ "kind": {
3547
+ "type": "ObjectType",
3548
+ "enum": true
3549
+ },
3550
+ "oldstyle": {
3551
+ "type": "bool"
3552
+ },
3553
+ "defnames": {
3554
+ "type": "List"
3555
+ },
3556
+ "args": {
3557
+ "type": "List"
3558
+ },
3559
+ "definition": {
3560
+ "type": "List"
3561
+ },
3562
+ "if_not_exists": {
3563
+ "type": "bool"
3564
+ },
3565
+ "replace": {
3566
+ "type": "bool"
3567
+ }
3568
+ },
3569
+ "CreateDomainStmt": {
3570
+ "type": {
3571
+ "type": "NodeTag",
3572
+ "enum": true
3573
+ },
3574
+ "domainname": {
3575
+ "type": "List"
3576
+ },
3577
+ "typeName": {
3578
+ "type": "TypeName",
3579
+ "nested": true
3580
+ },
3581
+ "collClause": {
3582
+ "type": "CollateClause",
3583
+ "nested": true
3584
+ },
3585
+ "constraints": {
3586
+ "type": "List"
3587
+ }
3588
+ },
3589
+ "CreateOpClassStmt": {
3590
+ "type": {
3591
+ "type": "NodeTag",
3592
+ "enum": true
3593
+ },
3594
+ "opclassname": {
3595
+ "type": "List"
3596
+ },
3597
+ "opfamilyname": {
3598
+ "type": "List"
3599
+ },
3600
+ "amname": {
3601
+ "type": "char"
3602
+ },
3603
+ "datatype": {
3604
+ "type": "TypeName",
3605
+ "nested": true
3606
+ },
3607
+ "items": {
3608
+ "type": "List"
3609
+ },
3610
+ "isDefault": {
3611
+ "type": "bool"
3612
+ }
3613
+ },
3614
+ "CreateOpClassItem": {
3615
+ "type": {
3616
+ "type": "NodeTag",
3617
+ "enum": true
3618
+ },
3619
+ "itemtype": {
3620
+ "type": "int"
3621
+ },
3622
+ "name": {
3623
+ "type": "ObjectWithArgs",
3624
+ "nested": true
3625
+ },
3626
+ "number": {
3627
+ "type": "int"
3628
+ },
3629
+ "order_family": {
3630
+ "type": "List"
3631
+ },
3632
+ "class_args": {
3633
+ "type": "List"
3634
+ },
3635
+ "storedtype": {
3636
+ "type": "TypeName",
3637
+ "nested": true
3638
+ }
3639
+ },
3640
+ "CreateOpFamilyStmt": {
3641
+ "type": {
3642
+ "type": "NodeTag",
3643
+ "enum": true
3644
+ },
3645
+ "opfamilyname": {
3646
+ "type": "List"
3647
+ },
3648
+ "amname": {
3649
+ "type": "char"
3650
+ }
3651
+ },
3652
+ "AlterOpFamilyStmt": {
3653
+ "type": {
3654
+ "type": "NodeTag",
3655
+ "enum": true
3656
+ },
3657
+ "opfamilyname": {
3658
+ "type": "List"
3659
+ },
3660
+ "amname": {
3661
+ "type": "char"
3662
+ },
3663
+ "isDrop": {
3664
+ "type": "bool"
3665
+ },
3666
+ "items": {
3667
+ "type": "List"
3668
+ }
3669
+ },
3670
+ "DropStmt": {
3671
+ "type": {
3672
+ "type": "NodeTag",
3673
+ "enum": true
3674
+ },
3675
+ "objects": {
3676
+ "type": "List"
3677
+ },
3678
+ "removeType": {
3679
+ "type": "ObjectType",
3680
+ "enum": true
3681
+ },
3682
+ "behavior": {
3683
+ "type": "DropBehavior",
3684
+ "enum": true
3685
+ },
3686
+ "missing_ok": {
3687
+ "type": "bool"
3688
+ },
3689
+ "concurrent": {
3690
+ "type": "bool"
3691
+ }
3692
+ },
3693
+ "TruncateStmt": {
3694
+ "type": {
3695
+ "type": "NodeTag",
3696
+ "enum": true
3697
+ },
3698
+ "relations": {
3699
+ "type": "List"
3700
+ },
3701
+ "restart_seqs": {
3702
+ "type": "bool"
3703
+ },
3704
+ "behavior": {
3705
+ "type": "DropBehavior",
3706
+ "enum": true
3707
+ }
3708
+ },
3709
+ "CommentStmt": {
3710
+ "type": {
3711
+ "type": "NodeTag",
3712
+ "enum": true
3713
+ },
3714
+ "objtype": {
3715
+ "type": "ObjectType",
3716
+ "enum": true
3717
+ },
3718
+ "object": {
3719
+ "type": "Node"
3720
+ },
3721
+ "comment": {
3722
+ "type": "char"
3723
+ }
3724
+ },
3725
+ "SecLabelStmt": {
3726
+ "type": {
3727
+ "type": "NodeTag",
3728
+ "enum": true
3729
+ },
3730
+ "objtype": {
3731
+ "type": "ObjectType",
3732
+ "enum": true
3733
+ },
3734
+ "object": {
3735
+ "type": "Node"
3736
+ },
3737
+ "provider": {
3738
+ "type": "char"
3739
+ },
3740
+ "label": {
3741
+ "type": "char"
3742
+ }
3743
+ },
3744
+ "DeclareCursorStmt": {
3745
+ "type": {
3746
+ "type": "NodeTag",
3747
+ "enum": true
3748
+ },
3749
+ "portalname": {
3750
+ "type": "char"
3751
+ },
3752
+ "options": {
3753
+ "type": "int"
3754
+ },
3755
+ "query": {
3756
+ "type": "Node"
3757
+ }
3758
+ },
3759
+ "ClosePortalStmt": {
3760
+ "type": {
3761
+ "type": "NodeTag",
3762
+ "enum": true
3763
+ },
3764
+ "portalname": {
3765
+ "type": "char"
3766
+ }
3767
+ },
3768
+ "FetchStmt": {
3769
+ "type": {
3770
+ "type": "NodeTag",
3771
+ "enum": true
3772
+ },
3773
+ "direction": {
3774
+ "type": "FetchDirection",
3775
+ "enum": true
3776
+ },
3777
+ "howMany": {
3778
+ "type": "long"
3779
+ },
3780
+ "portalname": {
3781
+ "type": "char"
3782
+ },
3783
+ "ismove": {
3784
+ "type": "bool"
3785
+ }
3786
+ },
3787
+ "IndexStmt": {
3788
+ "type": {
3789
+ "type": "NodeTag",
3790
+ "enum": true
3791
+ },
3792
+ "idxname": {
3793
+ "type": "char"
3794
+ },
3795
+ "relation": {
3796
+ "type": "RangeVar"
3797
+ },
3798
+ "accessMethod": {
3799
+ "type": "char"
3800
+ },
3801
+ "tableSpace": {
3802
+ "type": "char"
3803
+ },
3804
+ "indexParams": {
3805
+ "type": "List"
3806
+ },
3807
+ "indexIncludingParams": {
3808
+ "type": "List"
3809
+ },
3810
+ "options": {
3811
+ "type": "List"
3812
+ },
3813
+ "whereClause": {
3814
+ "type": "Node"
3815
+ },
3816
+ "excludeOpNames": {
3817
+ "type": "List"
3818
+ },
3819
+ "idxcomment": {
3820
+ "type": "char"
3821
+ },
3822
+ "indexOid": {
3823
+ "type": "Oid"
3824
+ },
3825
+ "oldNode": {
3826
+ "type": "Oid"
3827
+ },
3828
+ "oldCreateSubid": {
3829
+ "type": "SubTransactionId"
3830
+ },
3831
+ "oldFirstRelfilenodeSubid": {
3832
+ "type": "SubTransactionId"
3833
+ },
3834
+ "unique": {
3835
+ "type": "bool"
3836
+ },
3837
+ "primary": {
3838
+ "type": "bool"
3839
+ },
3840
+ "isconstraint": {
3841
+ "type": "bool"
3842
+ },
3843
+ "deferrable": {
3844
+ "type": "bool"
3845
+ },
3846
+ "initdeferred": {
3847
+ "type": "bool"
3848
+ },
3849
+ "transformed": {
3850
+ "type": "bool"
3851
+ },
3852
+ "concurrent": {
3853
+ "type": "bool"
3854
+ },
3855
+ "if_not_exists": {
3856
+ "type": "bool"
3857
+ },
3858
+ "reset_default_tblspc": {
3859
+ "type": "bool"
3860
+ }
3861
+ },
3862
+ "CreateStatsStmt": {
3863
+ "type": {
3864
+ "type": "NodeTag",
3865
+ "enum": true
3866
+ },
3867
+ "defnames": {
3868
+ "type": "List"
3869
+ },
3870
+ "stat_types": {
3871
+ "type": "List"
3872
+ },
3873
+ "exprs": {
3874
+ "type": "List"
3875
+ },
3876
+ "relations": {
3877
+ "type": "List"
3878
+ },
3879
+ "stxcomment": {
3880
+ "type": "char"
3881
+ },
3882
+ "if_not_exists": {
3883
+ "type": "bool"
3884
+ }
3885
+ },
3886
+ "AlterStatsStmt": {
3887
+ "type": {
3888
+ "type": "NodeTag",
3889
+ "enum": true
3890
+ },
3891
+ "defnames": {
3892
+ "type": "List"
3893
+ },
3894
+ "stxstattarget": {
3895
+ "type": "int"
3896
+ },
3897
+ "missing_ok": {
3898
+ "type": "bool"
3899
+ }
3900
+ },
3901
+ "CreateFunctionStmt": {
3902
+ "type": {
3903
+ "type": "NodeTag",
3904
+ "enum": true
3905
+ },
3906
+ "is_procedure": {
3907
+ "type": "bool"
3908
+ },
3909
+ "replace": {
3910
+ "type": "bool"
3911
+ },
3912
+ "funcname": {
3913
+ "type": "List"
3914
+ },
3915
+ "parameters": {
3916
+ "type": "List"
3917
+ },
3918
+ "returnType": {
3919
+ "type": "TypeName",
3920
+ "nested": true
3921
+ },
3922
+ "options": {
3923
+ "type": "List"
3924
+ }
3925
+ },
3926
+ "FunctionParameter": {
3927
+ "type": {
3928
+ "type": "NodeTag",
3929
+ "enum": true
3930
+ },
3931
+ "name": {
3932
+ "type": "char"
3933
+ },
3934
+ "argType": {
3935
+ "type": "TypeName",
3936
+ "nested": true
3937
+ },
3938
+ "mode": {
3939
+ "type": "FunctionParameterMode",
3940
+ "enum": true
3941
+ },
3942
+ "defexpr": {
3943
+ "type": "Node"
3944
+ }
3945
+ },
3946
+ "AlterFunctionStmt": {
3947
+ "type": {
3948
+ "type": "NodeTag",
3949
+ "enum": true
3950
+ },
3951
+ "objtype": {
3952
+ "type": "ObjectType",
3953
+ "enum": true
3954
+ },
3955
+ "func": {
3956
+ "type": "ObjectWithArgs",
3957
+ "nested": true
3958
+ },
3959
+ "actions": {
3960
+ "type": "List"
3961
+ }
3962
+ },
3963
+ "DoStmt": {
3964
+ "type": {
3965
+ "type": "NodeTag",
3966
+ "enum": true
3967
+ },
3968
+ "args": {
3969
+ "type": "List"
3970
+ }
3971
+ },
3972
+ "InlineCodeBlock": {
3973
+ "type": {
3974
+ "type": "NodeTag",
3975
+ "enum": true
3976
+ },
3977
+ "source_text": {
3978
+ "type": "char"
3979
+ },
3980
+ "langOid": {
3981
+ "type": "Oid"
3982
+ },
3983
+ "langIsTrusted": {
3984
+ "type": "bool"
3985
+ },
3986
+ "atomic": {
3987
+ "type": "bool"
3988
+ }
3989
+ },
3990
+ "CallStmt": {
3991
+ "type": {
3992
+ "type": "NodeTag",
3993
+ "enum": true
3994
+ },
3995
+ "funccall": {
3996
+ "type": "FuncCall",
3997
+ "nested": true
3998
+ },
3999
+ "funcexpr": {
4000
+ "type": "FuncExpr"
4001
+ }
4002
+ },
4003
+ "CallContext": {
4004
+ "type": {
4005
+ "type": "NodeTag",
4006
+ "enum": true
4007
+ },
4008
+ "atomic": {
4009
+ "type": "bool"
4010
+ }
4011
+ },
4012
+ "RenameStmt": {
4013
+ "type": {
4014
+ "type": "NodeTag",
4015
+ "enum": true
4016
+ },
4017
+ "renameType": {
4018
+ "type": "ObjectType",
4019
+ "enum": true
4020
+ },
4021
+ "relationType": {
4022
+ "type": "ObjectType",
4023
+ "enum": true
4024
+ },
4025
+ "relation": {
4026
+ "type": "RangeVar"
4027
+ },
4028
+ "object": {
4029
+ "type": "Node"
4030
+ },
4031
+ "subname": {
4032
+ "type": "char"
4033
+ },
4034
+ "newname": {
4035
+ "type": "char"
4036
+ },
4037
+ "behavior": {
4038
+ "type": "DropBehavior",
4039
+ "enum": true
4040
+ },
4041
+ "missing_ok": {
4042
+ "type": "bool"
4043
+ }
4044
+ },
4045
+ "AlterObjectDependsStmt": {
4046
+ "type": {
4047
+ "type": "NodeTag",
4048
+ "enum": true
4049
+ },
4050
+ "objectType": {
4051
+ "type": "ObjectType",
4052
+ "enum": true
4053
+ },
4054
+ "relation": {
4055
+ "type": "RangeVar"
4056
+ },
4057
+ "object": {
4058
+ "type": "Node"
4059
+ },
4060
+ "extname": {
4061
+ "type": "Value"
4062
+ },
4063
+ "remove": {
4064
+ "type": "bool"
4065
+ }
4066
+ },
4067
+ "AlterObjectSchemaStmt": {
4068
+ "type": {
4069
+ "type": "NodeTag",
4070
+ "enum": true
4071
+ },
4072
+ "objectType": {
4073
+ "type": "ObjectType",
4074
+ "enum": true
4075
+ },
4076
+ "relation": {
4077
+ "type": "RangeVar"
4078
+ },
4079
+ "object": {
4080
+ "type": "Node"
4081
+ },
4082
+ "newschema": {
4083
+ "type": "char"
4084
+ },
4085
+ "missing_ok": {
4086
+ "type": "bool"
4087
+ }
4088
+ },
4089
+ "AlterOwnerStmt": {
4090
+ "type": {
4091
+ "type": "NodeTag",
4092
+ "enum": true
4093
+ },
4094
+ "objectType": {
4095
+ "type": "ObjectType",
4096
+ "enum": true
4097
+ },
4098
+ "relation": {
4099
+ "type": "RangeVar"
4100
+ },
4101
+ "object": {
4102
+ "type": "Node"
4103
+ },
4104
+ "newowner": {
4105
+ "type": "RoleSpec",
4106
+ "nested": true
4107
+ }
4108
+ },
4109
+ "AlterOperatorStmt": {
4110
+ "type": {
4111
+ "type": "NodeTag",
4112
+ "enum": true
4113
+ },
4114
+ "opername": {
4115
+ "type": "ObjectWithArgs",
4116
+ "nested": true
4117
+ },
4118
+ "options": {
4119
+ "type": "List"
4120
+ }
4121
+ },
4122
+ "AlterTypeStmt": {
4123
+ "type": {
4124
+ "type": "NodeTag",
4125
+ "enum": true
4126
+ },
4127
+ "typeName": {
4128
+ "type": "List"
4129
+ },
4130
+ "options": {
4131
+ "type": "List"
4132
+ }
4133
+ },
4134
+ "RuleStmt": {
4135
+ "type": {
4136
+ "type": "NodeTag",
4137
+ "enum": true
4138
+ },
4139
+ "relation": {
4140
+ "type": "RangeVar"
4141
+ },
4142
+ "rulename": {
4143
+ "type": "char"
4144
+ },
4145
+ "whereClause": {
4146
+ "type": "Node"
4147
+ },
4148
+ "event": {
4149
+ "type": "CmdType",
4150
+ "enum": true
4151
+ },
4152
+ "instead": {
4153
+ "type": "bool"
4154
+ },
4155
+ "actions": {
4156
+ "type": "List"
4157
+ },
4158
+ "replace": {
4159
+ "type": "bool"
4160
+ }
4161
+ },
4162
+ "NotifyStmt": {
4163
+ "type": {
4164
+ "type": "NodeTag",
4165
+ "enum": true
4166
+ },
4167
+ "conditionname": {
4168
+ "type": "char"
4169
+ },
4170
+ "payload": {
4171
+ "type": "char"
4172
+ }
4173
+ },
4174
+ "ListenStmt": {
4175
+ "type": {
4176
+ "type": "NodeTag",
4177
+ "enum": true
4178
+ },
4179
+ "conditionname": {
4180
+ "type": "char"
4181
+ }
4182
+ },
4183
+ "UnlistenStmt": {
4184
+ "type": {
4185
+ "type": "NodeTag",
4186
+ "enum": true
4187
+ },
4188
+ "conditionname": {
4189
+ "type": "char"
4190
+ }
4191
+ },
4192
+ "TransactionStmt": {
4193
+ "type": {
4194
+ "type": "NodeTag",
4195
+ "enum": true
4196
+ },
4197
+ "kind": {
4198
+ "type": "TransactionStmtKind",
4199
+ "enum": true
4200
+ },
4201
+ "options": {
4202
+ "type": "List"
4203
+ },
4204
+ "savepoint_name": {
4205
+ "type": "char"
4206
+ },
4207
+ "gid": {
4208
+ "type": "char"
4209
+ },
4210
+ "chain": {
4211
+ "type": "bool"
4212
+ }
4213
+ },
4214
+ "CompositeTypeStmt": {
4215
+ "type": {
4216
+ "type": "NodeTag",
4217
+ "enum": true
4218
+ },
4219
+ "typevar": {
4220
+ "type": "RangeVar"
4221
+ },
4222
+ "coldeflist": {
4223
+ "type": "List"
4224
+ }
4225
+ },
4226
+ "CreateEnumStmt": {
4227
+ "type": {
4228
+ "type": "NodeTag",
4229
+ "enum": true
4230
+ },
4231
+ "typeName": {
4232
+ "type": "List"
4233
+ },
4234
+ "vals": {
4235
+ "type": "List"
4236
+ }
4237
+ },
4238
+ "CreateRangeStmt": {
4239
+ "type": {
4240
+ "type": "NodeTag",
4241
+ "enum": true
4242
+ },
4243
+ "typeName": {
4244
+ "type": "List"
4245
+ },
4246
+ "params": {
4247
+ "type": "List"
4248
+ }
4249
+ },
4250
+ "AlterEnumStmt": {
4251
+ "type": {
4252
+ "type": "NodeTag",
4253
+ "enum": true
4254
+ },
4255
+ "typeName": {
4256
+ "type": "List"
4257
+ },
4258
+ "oldVal": {
4259
+ "type": "char"
4260
+ },
4261
+ "newVal": {
4262
+ "type": "char"
4263
+ },
4264
+ "newValNeighbor": {
4265
+ "type": "char"
4266
+ },
4267
+ "newValIsAfter": {
4268
+ "type": "bool"
4269
+ },
4270
+ "skipIfNewValExists": {
4271
+ "type": "bool"
4272
+ }
4273
+ },
4274
+ "ViewStmt": {
4275
+ "type": {
4276
+ "type": "NodeTag",
4277
+ "enum": true
4278
+ },
4279
+ "view": {
4280
+ "type": "RangeVar"
4281
+ },
4282
+ "aliases": {
4283
+ "type": "List"
4284
+ },
4285
+ "query": {
4286
+ "type": "Node"
4287
+ },
4288
+ "replace": {
4289
+ "type": "bool"
4290
+ },
4291
+ "options": {
4292
+ "type": "List"
4293
+ },
4294
+ "withCheckOption": {
4295
+ "type": "ViewCheckOption",
4296
+ "enum": true
4297
+ }
4298
+ },
4299
+ "LoadStmt": {
4300
+ "type": {
4301
+ "type": "NodeTag",
4302
+ "enum": true
4303
+ },
4304
+ "filename": {
4305
+ "type": "char"
4306
+ }
4307
+ },
4308
+ "CreatedbStmt": {
4309
+ "type": {
4310
+ "type": "NodeTag",
4311
+ "enum": true
4312
+ },
4313
+ "dbname": {
4314
+ "type": "char"
4315
+ },
4316
+ "options": {
4317
+ "type": "List"
4318
+ }
4319
+ },
4320
+ "AlterDatabaseStmt": {
4321
+ "type": {
4322
+ "type": "NodeTag",
4323
+ "enum": true
4324
+ },
4325
+ "dbname": {
4326
+ "type": "char"
4327
+ },
4328
+ "options": {
4329
+ "type": "List"
4330
+ }
4331
+ },
4332
+ "AlterDatabaseSetStmt": {
4333
+ "type": {
4334
+ "type": "NodeTag",
4335
+ "enum": true
4336
+ },
4337
+ "dbname": {
4338
+ "type": "char"
4339
+ },
4340
+ "setstmt": {
4341
+ "type": "VariableSetStmt",
4342
+ "nested": true
4343
+ }
4344
+ },
4345
+ "DropdbStmt": {
4346
+ "type": {
4347
+ "type": "NodeTag",
4348
+ "enum": true
4349
+ },
4350
+ "dbname": {
4351
+ "type": "char"
4352
+ },
4353
+ "missing_ok": {
4354
+ "type": "bool"
4355
+ },
4356
+ "options": {
4357
+ "type": "List"
4358
+ }
4359
+ },
4360
+ "AlterSystemStmt": {
4361
+ "type": {
4362
+ "type": "NodeTag",
4363
+ "enum": true
4364
+ },
4365
+ "setstmt": {
4366
+ "type": "VariableSetStmt",
4367
+ "nested": true
4368
+ }
4369
+ },
4370
+ "ClusterStmt": {
4371
+ "type": {
4372
+ "type": "NodeTag",
4373
+ "enum": true
4374
+ },
4375
+ "relation": {
4376
+ "type": "RangeVar"
4377
+ },
4378
+ "indexname": {
4379
+ "type": "char"
4380
+ },
4381
+ "options": {
4382
+ "type": "int"
4383
+ }
4384
+ },
4385
+ "VacuumStmt": {
4386
+ "type": {
4387
+ "type": "NodeTag",
4388
+ "enum": true
4389
+ },
4390
+ "options": {
4391
+ "type": "List"
4392
+ },
4393
+ "rels": {
4394
+ "type": "List"
4395
+ },
4396
+ "is_vacuumcmd": {
4397
+ "type": "bool"
4398
+ }
4399
+ },
4400
+ "VacuumRelation": {
4401
+ "type": {
4402
+ "type": "NodeTag",
4403
+ "enum": true
4404
+ },
4405
+ "relation": {
4406
+ "type": "RangeVar"
4407
+ },
4408
+ "oid": {
4409
+ "type": "Oid"
4410
+ },
4411
+ "va_cols": {
4412
+ "type": "List"
4413
+ }
4414
+ },
4415
+ "ExplainStmt": {
4416
+ "type": {
4417
+ "type": "NodeTag",
4418
+ "enum": true
4419
+ },
4420
+ "query": {
4421
+ "type": "Node"
4422
+ },
4423
+ "options": {
4424
+ "type": "List"
4425
+ }
4426
+ },
4427
+ "CreateTableAsStmt": {
4428
+ "type": {
4429
+ "type": "NodeTag",
4430
+ "enum": true
4431
+ },
4432
+ "query": {
4433
+ "type": "Node"
4434
+ },
4435
+ "into": {
4436
+ "type": "IntoClause"
4437
+ },
4438
+ "relkind": {
4439
+ "type": "ObjectType",
4440
+ "enum": true
4441
+ },
4442
+ "is_select_into": {
4443
+ "type": "bool"
4444
+ },
4445
+ "if_not_exists": {
4446
+ "type": "bool"
4447
+ }
4448
+ },
4449
+ "RefreshMatViewStmt": {
4450
+ "type": {
4451
+ "type": "NodeTag",
4452
+ "enum": true
4453
+ },
4454
+ "concurrent": {
4455
+ "type": "bool"
4456
+ },
4457
+ "skipData": {
4458
+ "type": "bool"
4459
+ },
4460
+ "relation": {
4461
+ "type": "RangeVar"
4462
+ }
4463
+ },
4464
+ "CheckPointStmt": {
4465
+ "type": {
4466
+ "type": "NodeTag",
4467
+ "enum": true
4468
+ }
4469
+ },
4470
+ "DiscardStmt": {
4471
+ "type": {
4472
+ "type": "NodeTag",
4473
+ "enum": true
4474
+ },
4475
+ "target": {
4476
+ "type": "DiscardMode",
4477
+ "enum": true
4478
+ }
4479
+ },
4480
+ "LockStmt": {
4481
+ "type": {
4482
+ "type": "NodeTag",
4483
+ "enum": true
4484
+ },
4485
+ "relations": {
4486
+ "type": "List"
4487
+ },
4488
+ "mode": {
4489
+ "type": "int"
4490
+ },
4491
+ "nowait": {
4492
+ "type": "bool"
4493
+ }
4494
+ },
4495
+ "ConstraintsSetStmt": {
4496
+ "type": {
4497
+ "type": "NodeTag",
4498
+ "enum": true
4499
+ },
4500
+ "constraints": {
4501
+ "type": "List"
4502
+ },
4503
+ "deferred": {
4504
+ "type": "bool"
4505
+ }
4506
+ },
4507
+ "ReindexStmt": {
4508
+ "type": {
4509
+ "type": "NodeTag",
4510
+ "enum": true
4511
+ },
4512
+ "kind": {
4513
+ "type": "ReindexObjectType",
4514
+ "enum": true
4515
+ },
4516
+ "relation": {
4517
+ "type": "RangeVar"
4518
+ },
4519
+ "name": {
4520
+ "type": "char"
4521
+ },
4522
+ "options": {
4523
+ "type": "int"
4524
+ },
4525
+ "concurrent": {
4526
+ "type": "bool"
4527
+ }
4528
+ },
4529
+ "CreateConversionStmt": {
4530
+ "type": {
4531
+ "type": "NodeTag",
4532
+ "enum": true
4533
+ },
4534
+ "conversion_name": {
4535
+ "type": "List"
4536
+ },
4537
+ "for_encoding_name": {
4538
+ "type": "char"
4539
+ },
4540
+ "to_encoding_name": {
4541
+ "type": "char"
4542
+ },
4543
+ "func_name": {
4544
+ "type": "List"
4545
+ },
4546
+ "def": {
4547
+ "type": "bool"
4548
+ }
4549
+ },
4550
+ "CreateCastStmt": {
4551
+ "type": {
4552
+ "type": "NodeTag",
4553
+ "enum": true
4554
+ },
4555
+ "sourcetype": {
4556
+ "type": "TypeName",
4557
+ "nested": true
4558
+ },
4559
+ "targettype": {
4560
+ "type": "TypeName",
4561
+ "nested": true
4562
+ },
4563
+ "func": {
4564
+ "type": "ObjectWithArgs",
4565
+ "nested": true
4566
+ },
4567
+ "context": {
4568
+ "type": "CoercionContext",
4569
+ "enum": true
4570
+ },
4571
+ "inout": {
4572
+ "type": "bool"
4573
+ }
4574
+ },
4575
+ "CreateTransformStmt": {
4576
+ "type": {
4577
+ "type": "NodeTag",
4578
+ "enum": true
4579
+ },
4580
+ "replace": {
4581
+ "type": "bool"
4582
+ },
4583
+ "type_name": {
4584
+ "type": "TypeName",
4585
+ "nested": true
4586
+ },
4587
+ "lang": {
4588
+ "type": "char"
4589
+ },
4590
+ "fromsql": {
4591
+ "type": "ObjectWithArgs",
4592
+ "nested": true
4593
+ },
4594
+ "tosql": {
4595
+ "type": "ObjectWithArgs",
4596
+ "nested": true
4597
+ }
4598
+ },
4599
+ "PrepareStmt": {
4600
+ "type": {
4601
+ "type": "NodeTag",
4602
+ "enum": true
4603
+ },
4604
+ "name": {
4605
+ "type": "char"
4606
+ },
4607
+ "argtypes": {
4608
+ "type": "List"
4609
+ },
4610
+ "query": {
4611
+ "type": "Node"
4612
+ }
4613
+ },
4614
+ "ExecuteStmt": {
4615
+ "type": {
4616
+ "type": "NodeTag",
4617
+ "enum": true
4618
+ },
4619
+ "name": {
4620
+ "type": "char"
4621
+ },
4622
+ "params": {
4623
+ "type": "List"
4624
+ }
4625
+ },
4626
+ "DeallocateStmt": {
4627
+ "type": {
4628
+ "type": "NodeTag",
4629
+ "enum": true
4630
+ },
4631
+ "name": {
4632
+ "type": "char"
4633
+ }
4634
+ },
4635
+ "DropOwnedStmt": {
4636
+ "type": {
4637
+ "type": "NodeTag",
4638
+ "enum": true
4639
+ },
4640
+ "roles": {
4641
+ "type": "List"
4642
+ },
4643
+ "behavior": {
4644
+ "type": "DropBehavior",
4645
+ "enum": true
4646
+ }
4647
+ },
4648
+ "ReassignOwnedStmt": {
4649
+ "type": {
4650
+ "type": "NodeTag",
4651
+ "enum": true
4652
+ },
4653
+ "roles": {
4654
+ "type": "List"
4655
+ },
4656
+ "newrole": {
4657
+ "type": "RoleSpec",
4658
+ "nested": true
4659
+ }
4660
+ },
4661
+ "AlterTSDictionaryStmt": {
4662
+ "type": {
4663
+ "type": "NodeTag",
4664
+ "enum": true
4665
+ },
4666
+ "dictname": {
4667
+ "type": "List"
4668
+ },
4669
+ "options": {
4670
+ "type": "List"
4671
+ }
4672
+ },
4673
+ "AlterTSConfigurationStmt": {
4674
+ "type": {
4675
+ "type": "NodeTag",
4676
+ "enum": true
4677
+ },
4678
+ "kind": {
4679
+ "type": "AlterTSConfigType",
4680
+ "enum": true
4681
+ },
4682
+ "cfgname": {
4683
+ "type": "List"
4684
+ },
4685
+ "tokentype": {
4686
+ "type": "List"
4687
+ },
4688
+ "dicts": {
4689
+ "type": "List"
4690
+ },
4691
+ "override": {
4692
+ "type": "bool"
4693
+ },
4694
+ "replace": {
4695
+ "type": "bool"
4696
+ },
4697
+ "missing_ok": {
4698
+ "type": "bool"
4699
+ }
4700
+ },
4701
+ "CreatePublicationStmt": {
4702
+ "type": {
4703
+ "type": "NodeTag",
4704
+ "enum": true
4705
+ },
4706
+ "pubname": {
4707
+ "type": "char"
4708
+ },
4709
+ "options": {
4710
+ "type": "List"
4711
+ },
4712
+ "tables": {
4713
+ "type": "List"
4714
+ },
4715
+ "for_all_tables": {
4716
+ "type": "bool"
4717
+ }
4718
+ },
4719
+ "AlterPublicationStmt": {
4720
+ "type": {
4721
+ "type": "NodeTag",
4722
+ "enum": true
4723
+ },
4724
+ "pubname": {
4725
+ "type": "char"
4726
+ },
4727
+ "options": {
4728
+ "type": "List"
4729
+ },
4730
+ "tables": {
4731
+ "type": "List"
4732
+ },
4733
+ "for_all_tables": {
4734
+ "type": "bool"
4735
+ },
4736
+ "tableAction": {
4737
+ "type": "DefElemAction",
4738
+ "enum": true
4739
+ }
4740
+ },
4741
+ "CreateSubscriptionStmt": {
4742
+ "type": {
4743
+ "type": "NodeTag",
4744
+ "enum": true
4745
+ },
4746
+ "subname": {
4747
+ "type": "char"
4748
+ },
4749
+ "conninfo": {
4750
+ "type": "char"
4751
+ },
4752
+ "publication": {
4753
+ "type": "List"
4754
+ },
4755
+ "options": {
4756
+ "type": "List"
4757
+ }
4758
+ },
4759
+ "AlterSubscriptionStmt": {
4760
+ "type": {
4761
+ "type": "NodeTag",
4762
+ "enum": true
4763
+ },
4764
+ "kind": {
4765
+ "type": "AlterSubscriptionType",
4766
+ "enum": true
4767
+ },
4768
+ "subname": {
4769
+ "type": "char"
4770
+ },
4771
+ "conninfo": {
4772
+ "type": "char"
4773
+ },
4774
+ "publication": {
4775
+ "type": "List"
4776
+ },
4777
+ "options": {
4778
+ "type": "List"
4779
+ }
4780
+ },
4781
+ "DropSubscriptionStmt": {
4782
+ "type": {
4783
+ "type": "NodeTag",
4784
+ "enum": true
4785
+ },
4786
+ "subname": {
4787
+ "type": "char"
4788
+ },
4789
+ "missing_ok": {
4790
+ "type": "bool"
4791
+ },
4792
+ "behavior": {
4793
+ "type": "DropBehavior",
4794
+ "enum": true
4795
+ }
4796
+ },
4797
+ "VacAttrStats": {
4798
+ "attr": {
4799
+ "type": "Form_pg_attribute"
4800
+ },
4801
+ "attrtypid": {
4802
+ "type": "Oid"
4803
+ },
4804
+ "attrtypmod": {
4805
+ "type": "int32"
4806
+ },
4807
+ "attrtype": {
4808
+ "type": "Form_pg_type"
4809
+ },
4810
+ "attrcollid": {
4811
+ "type": "Oid"
4812
+ },
4813
+ "anl_context": {
4814
+ "type": "MemoryContext"
4815
+ },
4816
+ "compute_stats": {
4817
+ "type": "AnalyzeAttrComputeStatsFunc"
4818
+ },
4819
+ "minrows": {
4820
+ "type": "int"
4821
+ },
4822
+ "extra_data": {
4823
+ "type": "void"
4824
+ },
4825
+ "stats_valid": {
4826
+ "type": "bool"
4827
+ },
4828
+ "stanullfrac": {
4829
+ "type": "float4"
4830
+ },
4831
+ "stawidth": {
4832
+ "type": "int32"
4833
+ },
4834
+ "stadistinct": {
4835
+ "type": "float4"
4836
+ },
4837
+ "stakind[STATISTIC_NUM_SLOTS]": {
4838
+ "type": "int16"
4839
+ },
4840
+ "staop[STATISTIC_NUM_SLOTS]": {
4841
+ "type": "Oid"
4842
+ },
4843
+ "stacoll[STATISTIC_NUM_SLOTS]": {
4844
+ "type": "Oid"
4845
+ },
4846
+ "numnumbers[STATISTIC_NUM_SLOTS]": {
4847
+ "type": "int"
4848
+ },
4849
+ "stanumbers[STATISTIC_NUM_SLOTS]": {
4850
+ "type": "float4"
4851
+ },
4852
+ "numvalues[STATISTIC_NUM_SLOTS]": {
4853
+ "type": "int"
4854
+ },
4855
+ "stavalues[STATISTIC_NUM_SLOTS]": {
4856
+ "type": "Datum"
4857
+ },
4858
+ "statypid[STATISTIC_NUM_SLOTS]": {
4859
+ "type": "Oid"
4860
+ },
4861
+ "statyplen[STATISTIC_NUM_SLOTS]": {
4862
+ "type": "int16"
4863
+ },
4864
+ "statypbyval[STATISTIC_NUM_SLOTS]": {
4865
+ "type": "bool"
4866
+ },
4867
+ "statypalign[STATISTIC_NUM_SLOTS]": {
4868
+ "type": "char"
4869
+ },
4870
+ "tupattnum": {
4871
+ "type": "int"
4872
+ },
4873
+ "rows": {
4874
+ "type": "HeapTuple"
4875
+ },
4876
+ "tupDesc": {
4877
+ "type": "TupleDesc"
4878
+ },
4879
+ "exprvals": {
4880
+ "type": "Datum"
4881
+ },
4882
+ "exprnulls": {
4883
+ "type": "bool"
4884
+ },
4885
+ "rowstride": {
4886
+ "type": "int"
4887
+ }
4888
+ },
4889
+ "VacuumParams": {
4890
+ "options": {
4891
+ "type": "int"
4892
+ },
4893
+ "freeze_min_age": {
4894
+ "type": "int"
4895
+ },
4896
+ "freeze_table_age": {
4897
+ "type": "int"
4898
+ },
4899
+ "multixact_freeze_min_age": {
4900
+ "type": "int"
4901
+ },
4902
+ "multixact_freeze_table_age": {
4903
+ "type": "int"
4904
+ },
4905
+ "is_wraparound": {
4906
+ "type": "bool"
4907
+ },
4908
+ "log_min_duration": {
4909
+ "type": "int"
4910
+ },
4911
+ "index_cleanup": {
4912
+ "type": "VacOptTernaryValue",
4913
+ "enum": true
4914
+ },
4915
+ "truncate": {
4916
+ "type": "VacOptTernaryValue",
4917
+ "enum": true
4918
+ },
4919
+ "nworkers": {
4920
+ "type": "int"
4921
+ }
4922
+ },
4923
+ "Integer": {
4924
+ "ival": {
4925
+ "type": "long"
4926
+ }
4927
+ },
4928
+ "Float": {
4929
+ "str": {
4930
+ "type": "char"
4931
+ }
4932
+ },
4933
+ "String": {
4934
+ "str": {
4935
+ "type": "char"
4936
+ }
4937
+ },
4938
+ "BitString": {
4939
+ "str": {
4940
+ "type": "char"
4941
+ }
4942
+ },
4943
+ "Null": {}
4944
+ }