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