-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathphp_pq_type.h
More file actions
971 lines (965 loc) · 24.1 KB
/
php_pq_type.h
File metadata and controls
971 lines (965 loc) · 24.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
/* Generated file. See scripts/gen_pq_type-pq11.php */
#ifndef PHP_PQ_TYPE
# define PHP_PQ_TYPE(t,o)
#endif
#ifndef PHP_PQ_OID_BOOL
# define PHP_PQ_OID_BOOL 16
#endif
PHP_PQ_TYPE("BOOL", 16)
#ifndef PHP_PQ_OID_BYTEA
# define PHP_PQ_OID_BYTEA 17
#endif
PHP_PQ_TYPE("BYTEA", 17)
#ifndef PHP_PQ_OID_CHAR
# define PHP_PQ_OID_CHAR 18
#endif
PHP_PQ_TYPE("CHAR", 18)
#ifndef PHP_PQ_OID_NAME
# define PHP_PQ_OID_NAME 19
#endif
PHP_PQ_TYPE("NAME", 19)
#ifndef PHP_PQ_OID_INT8
# define PHP_PQ_OID_INT8 20
#endif
PHP_PQ_TYPE("INT8", 20)
#ifndef PHP_PQ_OID_INT2
# define PHP_PQ_OID_INT2 21
#endif
PHP_PQ_TYPE("INT2", 21)
#ifndef PHP_PQ_OID_INT2VECTOR
# define PHP_PQ_OID_INT2VECTOR 22
#endif
PHP_PQ_TYPE("INT2VECTOR", 22)
#ifndef PHP_PQ_OID_INT4
# define PHP_PQ_OID_INT4 23
#endif
PHP_PQ_TYPE("INT4", 23)
#ifndef PHP_PQ_OID_REGPROC
# define PHP_PQ_OID_REGPROC 24
#endif
PHP_PQ_TYPE("REGPROC", 24)
#ifndef PHP_PQ_OID_TEXT
# define PHP_PQ_OID_TEXT 25
#endif
PHP_PQ_TYPE("TEXT", 25)
#ifndef PHP_PQ_OID_OID
# define PHP_PQ_OID_OID 26
#endif
PHP_PQ_TYPE("OID", 26)
#ifndef PHP_PQ_OID_TID
# define PHP_PQ_OID_TID 27
#endif
PHP_PQ_TYPE("TID", 27)
#ifndef PHP_PQ_OID_XID
# define PHP_PQ_OID_XID 28
#endif
PHP_PQ_TYPE("XID", 28)
#ifndef PHP_PQ_OID_CID
# define PHP_PQ_OID_CID 29
#endif
PHP_PQ_TYPE("CID", 29)
#ifndef PHP_PQ_OID_OIDVECTOR
# define PHP_PQ_OID_OIDVECTOR 30
#endif
PHP_PQ_TYPE("OIDVECTOR", 30)
#ifndef PHP_PQ_OID_PG_DDL_COMMAND
# define PHP_PQ_OID_PG_DDL_COMMAND 32
#endif
PHP_PQ_TYPE("PG_DDL_COMMAND", 32)
#ifndef PHP_PQ_OID_PG_TYPE
# define PHP_PQ_OID_PG_TYPE 71
#endif
PHP_PQ_TYPE("PG_TYPE", 71)
#ifndef PHP_PQ_OID_PG_ATTRIBUTE
# define PHP_PQ_OID_PG_ATTRIBUTE 75
#endif
PHP_PQ_TYPE("PG_ATTRIBUTE", 75)
#ifndef PHP_PQ_OID_PG_PROC
# define PHP_PQ_OID_PG_PROC 81
#endif
PHP_PQ_TYPE("PG_PROC", 81)
#ifndef PHP_PQ_OID_PG_CLASS
# define PHP_PQ_OID_PG_CLASS 83
#endif
PHP_PQ_TYPE("PG_CLASS", 83)
#ifndef PHP_PQ_OID_JSON
# define PHP_PQ_OID_JSON 114
#endif
PHP_PQ_TYPE("JSON", 114)
#ifndef PHP_PQ_OID_XML
# define PHP_PQ_OID_XML 142
#endif
PHP_PQ_TYPE("XML", 142)
#ifndef PHP_PQ_OID_XMLARRAY
# define PHP_PQ_OID_XMLARRAY 143
#endif
PHP_PQ_TYPE("XMLARRAY", 143)
#ifndef PHP_PQ_OID_PG_NODE_TREE
# define PHP_PQ_OID_PG_NODE_TREE 194
#endif
PHP_PQ_TYPE("PG_NODE_TREE", 194)
#ifndef PHP_PQ_OID_JSONARRAY
# define PHP_PQ_OID_JSONARRAY 199
#endif
PHP_PQ_TYPE("JSONARRAY", 199)
#ifndef PHP_PQ_OID_PG_TYPEARRAY
# define PHP_PQ_OID_PG_TYPEARRAY 210
#endif
PHP_PQ_TYPE("PG_TYPEARRAY", 210)
#ifndef PHP_PQ_OID_TABLE_AM_HANDLER
# define PHP_PQ_OID_TABLE_AM_HANDLER 269
#endif
PHP_PQ_TYPE("TABLE_AM_HANDLER", 269)
#ifndef PHP_PQ_OID_PG_ATTRIBUTEARRAY
# define PHP_PQ_OID_PG_ATTRIBUTEARRAY 270
#endif
PHP_PQ_TYPE("PG_ATTRIBUTEARRAY", 270)
#ifndef PHP_PQ_OID_XID8ARRAY
# define PHP_PQ_OID_XID8ARRAY 271
#endif
PHP_PQ_TYPE("XID8ARRAY", 271)
#ifndef PHP_PQ_OID_PG_PROCARRAY
# define PHP_PQ_OID_PG_PROCARRAY 272
#endif
PHP_PQ_TYPE("PG_PROCARRAY", 272)
#ifndef PHP_PQ_OID_PG_CLASSARRAY
# define PHP_PQ_OID_PG_CLASSARRAY 273
#endif
PHP_PQ_TYPE("PG_CLASSARRAY", 273)
#ifndef PHP_PQ_OID_INDEX_AM_HANDLER
# define PHP_PQ_OID_INDEX_AM_HANDLER 325
#endif
PHP_PQ_TYPE("INDEX_AM_HANDLER", 325)
#ifndef PHP_PQ_OID_POINT
# define PHP_PQ_OID_POINT 600
#endif
PHP_PQ_TYPE("POINT", 600)
#ifndef PHP_PQ_OID_LSEG
# define PHP_PQ_OID_LSEG 601
#endif
PHP_PQ_TYPE("LSEG", 601)
#ifndef PHP_PQ_OID_PATH
# define PHP_PQ_OID_PATH 602
#endif
PHP_PQ_TYPE("PATH", 602)
#ifndef PHP_PQ_OID_BOX
# define PHP_PQ_OID_BOX 603
#endif
PHP_PQ_TYPE("BOX", 603)
#ifndef PHP_PQ_OID_POLYGON
# define PHP_PQ_OID_POLYGON 604
#endif
PHP_PQ_TYPE("POLYGON", 604)
#ifndef PHP_PQ_OID_LINE
# define PHP_PQ_OID_LINE 628
#endif
PHP_PQ_TYPE("LINE", 628)
#ifndef PHP_PQ_OID_LINEARRAY
# define PHP_PQ_OID_LINEARRAY 629
#endif
PHP_PQ_TYPE("LINEARRAY", 629)
#ifndef PHP_PQ_OID_CIDR
# define PHP_PQ_OID_CIDR 650
#endif
PHP_PQ_TYPE("CIDR", 650)
#ifndef PHP_PQ_OID_CIDRARRAY
# define PHP_PQ_OID_CIDRARRAY 651
#endif
PHP_PQ_TYPE("CIDRARRAY", 651)
#ifndef PHP_PQ_OID_FLOAT4
# define PHP_PQ_OID_FLOAT4 700
#endif
PHP_PQ_TYPE("FLOAT4", 700)
#ifndef PHP_PQ_OID_FLOAT8
# define PHP_PQ_OID_FLOAT8 701
#endif
PHP_PQ_TYPE("FLOAT8", 701)
#ifndef PHP_PQ_OID_UNKNOWN
# define PHP_PQ_OID_UNKNOWN 705
#endif
PHP_PQ_TYPE("UNKNOWN", 705)
#ifndef PHP_PQ_OID_CIRCLE
# define PHP_PQ_OID_CIRCLE 718
#endif
PHP_PQ_TYPE("CIRCLE", 718)
#ifndef PHP_PQ_OID_CIRCLEARRAY
# define PHP_PQ_OID_CIRCLEARRAY 719
#endif
PHP_PQ_TYPE("CIRCLEARRAY", 719)
#ifndef PHP_PQ_OID_MACADDR8
# define PHP_PQ_OID_MACADDR8 774
#endif
PHP_PQ_TYPE("MACADDR8", 774)
#ifndef PHP_PQ_OID_MACADDR8ARRAY
# define PHP_PQ_OID_MACADDR8ARRAY 775
#endif
PHP_PQ_TYPE("MACADDR8ARRAY", 775)
#ifndef PHP_PQ_OID_MONEY
# define PHP_PQ_OID_MONEY 790
#endif
PHP_PQ_TYPE("MONEY", 790)
#ifndef PHP_PQ_OID_MONEYARRAY
# define PHP_PQ_OID_MONEYARRAY 791
#endif
PHP_PQ_TYPE("MONEYARRAY", 791)
#ifndef PHP_PQ_OID_MACADDR
# define PHP_PQ_OID_MACADDR 829
#endif
PHP_PQ_TYPE("MACADDR", 829)
#ifndef PHP_PQ_OID_INET
# define PHP_PQ_OID_INET 869
#endif
PHP_PQ_TYPE("INET", 869)
#ifndef PHP_PQ_OID_BOOLARRAY
# define PHP_PQ_OID_BOOLARRAY 1000
#endif
PHP_PQ_TYPE("BOOLARRAY", 1000)
#ifndef PHP_PQ_OID_BYTEAARRAY
# define PHP_PQ_OID_BYTEAARRAY 1001
#endif
PHP_PQ_TYPE("BYTEAARRAY", 1001)
#ifndef PHP_PQ_OID_CHARARRAY
# define PHP_PQ_OID_CHARARRAY 1002
#endif
PHP_PQ_TYPE("CHARARRAY", 1002)
#ifndef PHP_PQ_OID_NAMEARRAY
# define PHP_PQ_OID_NAMEARRAY 1003
#endif
PHP_PQ_TYPE("NAMEARRAY", 1003)
#ifndef PHP_PQ_OID_INT2ARRAY
# define PHP_PQ_OID_INT2ARRAY 1005
#endif
PHP_PQ_TYPE("INT2ARRAY", 1005)
#ifndef PHP_PQ_OID_INT2VECTORARRAY
# define PHP_PQ_OID_INT2VECTORARRAY 1006
#endif
PHP_PQ_TYPE("INT2VECTORARRAY", 1006)
#ifndef PHP_PQ_OID_INT4ARRAY
# define PHP_PQ_OID_INT4ARRAY 1007
#endif
PHP_PQ_TYPE("INT4ARRAY", 1007)
#ifndef PHP_PQ_OID_REGPROCARRAY
# define PHP_PQ_OID_REGPROCARRAY 1008
#endif
PHP_PQ_TYPE("REGPROCARRAY", 1008)
#ifndef PHP_PQ_OID_TEXTARRAY
# define PHP_PQ_OID_TEXTARRAY 1009
#endif
PHP_PQ_TYPE("TEXTARRAY", 1009)
#ifndef PHP_PQ_OID_TIDARRAY
# define PHP_PQ_OID_TIDARRAY 1010
#endif
PHP_PQ_TYPE("TIDARRAY", 1010)
#ifndef PHP_PQ_OID_XIDARRAY
# define PHP_PQ_OID_XIDARRAY 1011
#endif
PHP_PQ_TYPE("XIDARRAY", 1011)
#ifndef PHP_PQ_OID_CIDARRAY
# define PHP_PQ_OID_CIDARRAY 1012
#endif
PHP_PQ_TYPE("CIDARRAY", 1012)
#ifndef PHP_PQ_OID_OIDVECTORARRAY
# define PHP_PQ_OID_OIDVECTORARRAY 1013
#endif
PHP_PQ_TYPE("OIDVECTORARRAY", 1013)
#ifndef PHP_PQ_OID_BPCHARARRAY
# define PHP_PQ_OID_BPCHARARRAY 1014
#endif
PHP_PQ_TYPE("BPCHARARRAY", 1014)
#ifndef PHP_PQ_OID_VARCHARARRAY
# define PHP_PQ_OID_VARCHARARRAY 1015
#endif
PHP_PQ_TYPE("VARCHARARRAY", 1015)
#ifndef PHP_PQ_OID_INT8ARRAY
# define PHP_PQ_OID_INT8ARRAY 1016
#endif
PHP_PQ_TYPE("INT8ARRAY", 1016)
#ifndef PHP_PQ_OID_POINTARRAY
# define PHP_PQ_OID_POINTARRAY 1017
#endif
PHP_PQ_TYPE("POINTARRAY", 1017)
#ifndef PHP_PQ_OID_LSEGARRAY
# define PHP_PQ_OID_LSEGARRAY 1018
#endif
PHP_PQ_TYPE("LSEGARRAY", 1018)
#ifndef PHP_PQ_OID_PATHARRAY
# define PHP_PQ_OID_PATHARRAY 1019
#endif
PHP_PQ_TYPE("PATHARRAY", 1019)
#ifndef PHP_PQ_OID_BOXARRAY
# define PHP_PQ_OID_BOXARRAY 1020
#endif
PHP_PQ_TYPE("BOXARRAY", 1020)
#ifndef PHP_PQ_OID_FLOAT4ARRAY
# define PHP_PQ_OID_FLOAT4ARRAY 1021
#endif
PHP_PQ_TYPE("FLOAT4ARRAY", 1021)
#ifndef PHP_PQ_OID_FLOAT8ARRAY
# define PHP_PQ_OID_FLOAT8ARRAY 1022
#endif
PHP_PQ_TYPE("FLOAT8ARRAY", 1022)
#ifndef PHP_PQ_OID_POLYGONARRAY
# define PHP_PQ_OID_POLYGONARRAY 1027
#endif
PHP_PQ_TYPE("POLYGONARRAY", 1027)
#ifndef PHP_PQ_OID_OIDARRAY
# define PHP_PQ_OID_OIDARRAY 1028
#endif
PHP_PQ_TYPE("OIDARRAY", 1028)
#ifndef PHP_PQ_OID_ACLITEM
# define PHP_PQ_OID_ACLITEM 1033
#endif
PHP_PQ_TYPE("ACLITEM", 1033)
#ifndef PHP_PQ_OID_ACLITEMARRAY
# define PHP_PQ_OID_ACLITEMARRAY 1034
#endif
PHP_PQ_TYPE("ACLITEMARRAY", 1034)
#ifndef PHP_PQ_OID_MACADDRARRAY
# define PHP_PQ_OID_MACADDRARRAY 1040
#endif
PHP_PQ_TYPE("MACADDRARRAY", 1040)
#ifndef PHP_PQ_OID_INETARRAY
# define PHP_PQ_OID_INETARRAY 1041
#endif
PHP_PQ_TYPE("INETARRAY", 1041)
#ifndef PHP_PQ_OID_BPCHAR
# define PHP_PQ_OID_BPCHAR 1042
#endif
PHP_PQ_TYPE("BPCHAR", 1042)
#ifndef PHP_PQ_OID_VARCHAR
# define PHP_PQ_OID_VARCHAR 1043
#endif
PHP_PQ_TYPE("VARCHAR", 1043)
#ifndef PHP_PQ_OID_DATE
# define PHP_PQ_OID_DATE 1082
#endif
PHP_PQ_TYPE("DATE", 1082)
#ifndef PHP_PQ_OID_TIME
# define PHP_PQ_OID_TIME 1083
#endif
PHP_PQ_TYPE("TIME", 1083)
#ifndef PHP_PQ_OID_TIMESTAMP
# define PHP_PQ_OID_TIMESTAMP 1114
#endif
PHP_PQ_TYPE("TIMESTAMP", 1114)
#ifndef PHP_PQ_OID_TIMESTAMPARRAY
# define PHP_PQ_OID_TIMESTAMPARRAY 1115
#endif
PHP_PQ_TYPE("TIMESTAMPARRAY", 1115)
#ifndef PHP_PQ_OID_DATEARRAY
# define PHP_PQ_OID_DATEARRAY 1182
#endif
PHP_PQ_TYPE("DATEARRAY", 1182)
#ifndef PHP_PQ_OID_TIMEARRAY
# define PHP_PQ_OID_TIMEARRAY 1183
#endif
PHP_PQ_TYPE("TIMEARRAY", 1183)
#ifndef PHP_PQ_OID_TIMESTAMPTZ
# define PHP_PQ_OID_TIMESTAMPTZ 1184
#endif
PHP_PQ_TYPE("TIMESTAMPTZ", 1184)
#ifndef PHP_PQ_OID_TIMESTAMPTZARRAY
# define PHP_PQ_OID_TIMESTAMPTZARRAY 1185
#endif
PHP_PQ_TYPE("TIMESTAMPTZARRAY", 1185)
#ifndef PHP_PQ_OID_INTERVAL
# define PHP_PQ_OID_INTERVAL 1186
#endif
PHP_PQ_TYPE("INTERVAL", 1186)
#ifndef PHP_PQ_OID_INTERVALARRAY
# define PHP_PQ_OID_INTERVALARRAY 1187
#endif
PHP_PQ_TYPE("INTERVALARRAY", 1187)
#ifndef PHP_PQ_OID_NUMERICARRAY
# define PHP_PQ_OID_NUMERICARRAY 1231
#endif
PHP_PQ_TYPE("NUMERICARRAY", 1231)
#ifndef PHP_PQ_OID_CSTRINGARRAY
# define PHP_PQ_OID_CSTRINGARRAY 1263
#endif
PHP_PQ_TYPE("CSTRINGARRAY", 1263)
#ifndef PHP_PQ_OID_TIMETZ
# define PHP_PQ_OID_TIMETZ 1266
#endif
PHP_PQ_TYPE("TIMETZ", 1266)
#ifndef PHP_PQ_OID_TIMETZARRAY
# define PHP_PQ_OID_TIMETZARRAY 1270
#endif
PHP_PQ_TYPE("TIMETZARRAY", 1270)
#ifndef PHP_PQ_OID_BIT
# define PHP_PQ_OID_BIT 1560
#endif
PHP_PQ_TYPE("BIT", 1560)
#ifndef PHP_PQ_OID_BITARRAY
# define PHP_PQ_OID_BITARRAY 1561
#endif
PHP_PQ_TYPE("BITARRAY", 1561)
#ifndef PHP_PQ_OID_VARBIT
# define PHP_PQ_OID_VARBIT 1562
#endif
PHP_PQ_TYPE("VARBIT", 1562)
#ifndef PHP_PQ_OID_VARBITARRAY
# define PHP_PQ_OID_VARBITARRAY 1563
#endif
PHP_PQ_TYPE("VARBITARRAY", 1563)
#ifndef PHP_PQ_OID_NUMERIC
# define PHP_PQ_OID_NUMERIC 1700
#endif
PHP_PQ_TYPE("NUMERIC", 1700)
#ifndef PHP_PQ_OID_REFCURSOR
# define PHP_PQ_OID_REFCURSOR 1790
#endif
PHP_PQ_TYPE("REFCURSOR", 1790)
#ifndef PHP_PQ_OID_REFCURSORARRAY
# define PHP_PQ_OID_REFCURSORARRAY 2201
#endif
PHP_PQ_TYPE("REFCURSORARRAY", 2201)
#ifndef PHP_PQ_OID_REGPROCEDURE
# define PHP_PQ_OID_REGPROCEDURE 2202
#endif
PHP_PQ_TYPE("REGPROCEDURE", 2202)
#ifndef PHP_PQ_OID_REGOPER
# define PHP_PQ_OID_REGOPER 2203
#endif
PHP_PQ_TYPE("REGOPER", 2203)
#ifndef PHP_PQ_OID_REGOPERATOR
# define PHP_PQ_OID_REGOPERATOR 2204
#endif
PHP_PQ_TYPE("REGOPERATOR", 2204)
#ifndef PHP_PQ_OID_REGCLASS
# define PHP_PQ_OID_REGCLASS 2205
#endif
PHP_PQ_TYPE("REGCLASS", 2205)
#ifndef PHP_PQ_OID_REGTYPE
# define PHP_PQ_OID_REGTYPE 2206
#endif
PHP_PQ_TYPE("REGTYPE", 2206)
#ifndef PHP_PQ_OID_REGPROCEDUREARRAY
# define PHP_PQ_OID_REGPROCEDUREARRAY 2207
#endif
PHP_PQ_TYPE("REGPROCEDUREARRAY", 2207)
#ifndef PHP_PQ_OID_REGOPERARRAY
# define PHP_PQ_OID_REGOPERARRAY 2208
#endif
PHP_PQ_TYPE("REGOPERARRAY", 2208)
#ifndef PHP_PQ_OID_REGOPERATORARRAY
# define PHP_PQ_OID_REGOPERATORARRAY 2209
#endif
PHP_PQ_TYPE("REGOPERATORARRAY", 2209)
#ifndef PHP_PQ_OID_REGCLASSARRAY
# define PHP_PQ_OID_REGCLASSARRAY 2210
#endif
PHP_PQ_TYPE("REGCLASSARRAY", 2210)
#ifndef PHP_PQ_OID_REGTYPEARRAY
# define PHP_PQ_OID_REGTYPEARRAY 2211
#endif
PHP_PQ_TYPE("REGTYPEARRAY", 2211)
#ifndef PHP_PQ_OID_RECORD
# define PHP_PQ_OID_RECORD 2249
#endif
PHP_PQ_TYPE("RECORD", 2249)
#ifndef PHP_PQ_OID_CSTRING
# define PHP_PQ_OID_CSTRING 2275
#endif
PHP_PQ_TYPE("CSTRING", 2275)
#ifndef PHP_PQ_OID_ANY
# define PHP_PQ_OID_ANY 2276
#endif
PHP_PQ_TYPE("ANY", 2276)
#ifndef PHP_PQ_OID_ANYARRAY
# define PHP_PQ_OID_ANYARRAY 2277
#endif
PHP_PQ_TYPE("ANYARRAY", 2277)
#ifndef PHP_PQ_OID_VOID
# define PHP_PQ_OID_VOID 2278
#endif
PHP_PQ_TYPE("VOID", 2278)
#ifndef PHP_PQ_OID_TRIGGER
# define PHP_PQ_OID_TRIGGER 2279
#endif
PHP_PQ_TYPE("TRIGGER", 2279)
#ifndef PHP_PQ_OID_LANGUAGE_HANDLER
# define PHP_PQ_OID_LANGUAGE_HANDLER 2280
#endif
PHP_PQ_TYPE("LANGUAGE_HANDLER", 2280)
#ifndef PHP_PQ_OID_INTERNAL
# define PHP_PQ_OID_INTERNAL 2281
#endif
PHP_PQ_TYPE("INTERNAL", 2281)
#ifndef PHP_PQ_OID_ANYELEMENT
# define PHP_PQ_OID_ANYELEMENT 2283
#endif
PHP_PQ_TYPE("ANYELEMENT", 2283)
#ifndef PHP_PQ_OID__RECORD
# define PHP_PQ_OID__RECORD 2287
#endif
PHP_PQ_TYPE("_RECORD", 2287)
#ifndef PHP_PQ_OID_ANYNONARRAY
# define PHP_PQ_OID_ANYNONARRAY 2776
#endif
PHP_PQ_TYPE("ANYNONARRAY", 2776)
#ifndef PHP_PQ_OID_TXID_SNAPSHOTARRAY
# define PHP_PQ_OID_TXID_SNAPSHOTARRAY 2949
#endif
PHP_PQ_TYPE("TXID_SNAPSHOTARRAY", 2949)
#ifndef PHP_PQ_OID_UUID
# define PHP_PQ_OID_UUID 2950
#endif
PHP_PQ_TYPE("UUID", 2950)
#ifndef PHP_PQ_OID_UUIDARRAY
# define PHP_PQ_OID_UUIDARRAY 2951
#endif
PHP_PQ_TYPE("UUIDARRAY", 2951)
#ifndef PHP_PQ_OID_TXID_SNAPSHOT
# define PHP_PQ_OID_TXID_SNAPSHOT 2970
#endif
PHP_PQ_TYPE("TXID_SNAPSHOT", 2970)
#ifndef PHP_PQ_OID_FDW_HANDLER
# define PHP_PQ_OID_FDW_HANDLER 3115
#endif
PHP_PQ_TYPE("FDW_HANDLER", 3115)
#ifndef PHP_PQ_OID_PG_LSN
# define PHP_PQ_OID_PG_LSN 3220
#endif
PHP_PQ_TYPE("PG_LSN", 3220)
#ifndef PHP_PQ_OID_PG_LSNARRAY
# define PHP_PQ_OID_PG_LSNARRAY 3221
#endif
PHP_PQ_TYPE("PG_LSNARRAY", 3221)
#ifndef PHP_PQ_OID_TSM_HANDLER
# define PHP_PQ_OID_TSM_HANDLER 3310
#endif
PHP_PQ_TYPE("TSM_HANDLER", 3310)
#ifndef PHP_PQ_OID_PG_NDISTINCT
# define PHP_PQ_OID_PG_NDISTINCT 3361
#endif
PHP_PQ_TYPE("PG_NDISTINCT", 3361)
#ifndef PHP_PQ_OID_PG_DEPENDENCIES
# define PHP_PQ_OID_PG_DEPENDENCIES 3402
#endif
PHP_PQ_TYPE("PG_DEPENDENCIES", 3402)
#ifndef PHP_PQ_OID_ANYENUM
# define PHP_PQ_OID_ANYENUM 3500
#endif
PHP_PQ_TYPE("ANYENUM", 3500)
#ifndef PHP_PQ_OID_TSVECTOR
# define PHP_PQ_OID_TSVECTOR 3614
#endif
PHP_PQ_TYPE("TSVECTOR", 3614)
#ifndef PHP_PQ_OID_TSQUERY
# define PHP_PQ_OID_TSQUERY 3615
#endif
PHP_PQ_TYPE("TSQUERY", 3615)
#ifndef PHP_PQ_OID_GTSVECTOR
# define PHP_PQ_OID_GTSVECTOR 3642
#endif
PHP_PQ_TYPE("GTSVECTOR", 3642)
#ifndef PHP_PQ_OID_TSVECTORARRAY
# define PHP_PQ_OID_TSVECTORARRAY 3643
#endif
PHP_PQ_TYPE("TSVECTORARRAY", 3643)
#ifndef PHP_PQ_OID_GTSVECTORARRAY
# define PHP_PQ_OID_GTSVECTORARRAY 3644
#endif
PHP_PQ_TYPE("GTSVECTORARRAY", 3644)
#ifndef PHP_PQ_OID_TSQUERYARRAY
# define PHP_PQ_OID_TSQUERYARRAY 3645
#endif
PHP_PQ_TYPE("TSQUERYARRAY", 3645)
#ifndef PHP_PQ_OID_REGCONFIG
# define PHP_PQ_OID_REGCONFIG 3734
#endif
PHP_PQ_TYPE("REGCONFIG", 3734)
#ifndef PHP_PQ_OID_REGCONFIGARRAY
# define PHP_PQ_OID_REGCONFIGARRAY 3735
#endif
PHP_PQ_TYPE("REGCONFIGARRAY", 3735)
#ifndef PHP_PQ_OID_REGDICTIONARY
# define PHP_PQ_OID_REGDICTIONARY 3769
#endif
PHP_PQ_TYPE("REGDICTIONARY", 3769)
#ifndef PHP_PQ_OID_REGDICTIONARYARRAY
# define PHP_PQ_OID_REGDICTIONARYARRAY 3770
#endif
PHP_PQ_TYPE("REGDICTIONARYARRAY", 3770)
#ifndef PHP_PQ_OID_JSONB
# define PHP_PQ_OID_JSONB 3802
#endif
PHP_PQ_TYPE("JSONB", 3802)
#ifndef PHP_PQ_OID_JSONBARRAY
# define PHP_PQ_OID_JSONBARRAY 3807
#endif
PHP_PQ_TYPE("JSONBARRAY", 3807)
#ifndef PHP_PQ_OID_ANYRANGE
# define PHP_PQ_OID_ANYRANGE 3831
#endif
PHP_PQ_TYPE("ANYRANGE", 3831)
#ifndef PHP_PQ_OID_EVENT_TRIGGER
# define PHP_PQ_OID_EVENT_TRIGGER 3838
#endif
PHP_PQ_TYPE("EVENT_TRIGGER", 3838)
#ifndef PHP_PQ_OID_INT4RANGE
# define PHP_PQ_OID_INT4RANGE 3904
#endif
PHP_PQ_TYPE("INT4RANGE", 3904)
#ifndef PHP_PQ_OID_INT4RANGEARRAY
# define PHP_PQ_OID_INT4RANGEARRAY 3905
#endif
PHP_PQ_TYPE("INT4RANGEARRAY", 3905)
#ifndef PHP_PQ_OID_NUMRANGE
# define PHP_PQ_OID_NUMRANGE 3906
#endif
PHP_PQ_TYPE("NUMRANGE", 3906)
#ifndef PHP_PQ_OID_NUMRANGEARRAY
# define PHP_PQ_OID_NUMRANGEARRAY 3907
#endif
PHP_PQ_TYPE("NUMRANGEARRAY", 3907)
#ifndef PHP_PQ_OID_TSRANGE
# define PHP_PQ_OID_TSRANGE 3908
#endif
PHP_PQ_TYPE("TSRANGE", 3908)
#ifndef PHP_PQ_OID_TSRANGEARRAY
# define PHP_PQ_OID_TSRANGEARRAY 3909
#endif
PHP_PQ_TYPE("TSRANGEARRAY", 3909)
#ifndef PHP_PQ_OID_TSTZRANGE
# define PHP_PQ_OID_TSTZRANGE 3910
#endif
PHP_PQ_TYPE("TSTZRANGE", 3910)
#ifndef PHP_PQ_OID_TSTZRANGEARRAY
# define PHP_PQ_OID_TSTZRANGEARRAY 3911
#endif
PHP_PQ_TYPE("TSTZRANGEARRAY", 3911)
#ifndef PHP_PQ_OID_DATERANGE
# define PHP_PQ_OID_DATERANGE 3912
#endif
PHP_PQ_TYPE("DATERANGE", 3912)
#ifndef PHP_PQ_OID_DATERANGEARRAY
# define PHP_PQ_OID_DATERANGEARRAY 3913
#endif
PHP_PQ_TYPE("DATERANGEARRAY", 3913)
#ifndef PHP_PQ_OID_INT8RANGE
# define PHP_PQ_OID_INT8RANGE 3926
#endif
PHP_PQ_TYPE("INT8RANGE", 3926)
#ifndef PHP_PQ_OID_INT8RANGEARRAY
# define PHP_PQ_OID_INT8RANGEARRAY 3927
#endif
PHP_PQ_TYPE("INT8RANGEARRAY", 3927)
#ifndef PHP_PQ_OID_JSONPATH
# define PHP_PQ_OID_JSONPATH 4072
#endif
PHP_PQ_TYPE("JSONPATH", 4072)
#ifndef PHP_PQ_OID_JSONPATHARRAY
# define PHP_PQ_OID_JSONPATHARRAY 4073
#endif
PHP_PQ_TYPE("JSONPATHARRAY", 4073)
#ifndef PHP_PQ_OID_REGNAMESPACE
# define PHP_PQ_OID_REGNAMESPACE 4089
#endif
PHP_PQ_TYPE("REGNAMESPACE", 4089)
#ifndef PHP_PQ_OID_REGNAMESPACEARRAY
# define PHP_PQ_OID_REGNAMESPACEARRAY 4090
#endif
PHP_PQ_TYPE("REGNAMESPACEARRAY", 4090)
#ifndef PHP_PQ_OID_REGROLE
# define PHP_PQ_OID_REGROLE 4096
#endif
PHP_PQ_TYPE("REGROLE", 4096)
#ifndef PHP_PQ_OID_REGROLEARRAY
# define PHP_PQ_OID_REGROLEARRAY 4097
#endif
PHP_PQ_TYPE("REGROLEARRAY", 4097)
#ifndef PHP_PQ_OID_REGCOLLATION
# define PHP_PQ_OID_REGCOLLATION 4191
#endif
PHP_PQ_TYPE("REGCOLLATION", 4191)
#ifndef PHP_PQ_OID_REGCOLLATIONARRAY
# define PHP_PQ_OID_REGCOLLATIONARRAY 4192
#endif
PHP_PQ_TYPE("REGCOLLATIONARRAY", 4192)
#ifndef PHP_PQ_OID_INT4MULTIRANGE
# define PHP_PQ_OID_INT4MULTIRANGE 4451
#endif
PHP_PQ_TYPE("INT4MULTIRANGE", 4451)
#ifndef PHP_PQ_OID_NUMMULTIRANGE
# define PHP_PQ_OID_NUMMULTIRANGE 4532
#endif
PHP_PQ_TYPE("NUMMULTIRANGE", 4532)
#ifndef PHP_PQ_OID_TSMULTIRANGE
# define PHP_PQ_OID_TSMULTIRANGE 4533
#endif
PHP_PQ_TYPE("TSMULTIRANGE", 4533)
#ifndef PHP_PQ_OID_TSTZMULTIRANGE
# define PHP_PQ_OID_TSTZMULTIRANGE 4534
#endif
PHP_PQ_TYPE("TSTZMULTIRANGE", 4534)
#ifndef PHP_PQ_OID_DATEMULTIRANGE
# define PHP_PQ_OID_DATEMULTIRANGE 4535
#endif
PHP_PQ_TYPE("DATEMULTIRANGE", 4535)
#ifndef PHP_PQ_OID_INT8MULTIRANGE
# define PHP_PQ_OID_INT8MULTIRANGE 4536
#endif
PHP_PQ_TYPE("INT8MULTIRANGE", 4536)
#ifndef PHP_PQ_OID_ANYMULTIRANGE
# define PHP_PQ_OID_ANYMULTIRANGE 4537
#endif
PHP_PQ_TYPE("ANYMULTIRANGE", 4537)
#ifndef PHP_PQ_OID_ANYCOMPATIBLEMULTIRANGE
# define PHP_PQ_OID_ANYCOMPATIBLEMULTIRANGE 4538
#endif
PHP_PQ_TYPE("ANYCOMPATIBLEMULTIRANGE", 4538)
#ifndef PHP_PQ_OID_PG_BRIN_BLOOM_SUMMARY
# define PHP_PQ_OID_PG_BRIN_BLOOM_SUMMARY 4600
#endif
PHP_PQ_TYPE("PG_BRIN_BLOOM_SUMMARY", 4600)
#ifndef PHP_PQ_OID_PG_BRIN_MINMAX_MULTI_SUMMARY
# define PHP_PQ_OID_PG_BRIN_MINMAX_MULTI_SUMMARY 4601
#endif
PHP_PQ_TYPE("PG_BRIN_MINMAX_MULTI_SUMMARY", 4601)
#ifndef PHP_PQ_OID_PG_MCV_LIST
# define PHP_PQ_OID_PG_MCV_LIST 5017
#endif
PHP_PQ_TYPE("PG_MCV_LIST", 5017)
#ifndef PHP_PQ_OID_PG_SNAPSHOT
# define PHP_PQ_OID_PG_SNAPSHOT 5038
#endif
PHP_PQ_TYPE("PG_SNAPSHOT", 5038)
#ifndef PHP_PQ_OID_PG_SNAPSHOTARRAY
# define PHP_PQ_OID_PG_SNAPSHOTARRAY 5039
#endif
PHP_PQ_TYPE("PG_SNAPSHOTARRAY", 5039)
#ifndef PHP_PQ_OID_XID8
# define PHP_PQ_OID_XID8 5069
#endif
PHP_PQ_TYPE("XID8", 5069)
#ifndef PHP_PQ_OID_ANYCOMPATIBLE
# define PHP_PQ_OID_ANYCOMPATIBLE 5077
#endif
PHP_PQ_TYPE("ANYCOMPATIBLE", 5077)
#ifndef PHP_PQ_OID_ANYCOMPATIBLEARRAY
# define PHP_PQ_OID_ANYCOMPATIBLEARRAY 5078
#endif
PHP_PQ_TYPE("ANYCOMPATIBLEARRAY", 5078)
#ifndef PHP_PQ_OID_ANYCOMPATIBLENONARRAY
# define PHP_PQ_OID_ANYCOMPATIBLENONARRAY 5079
#endif
PHP_PQ_TYPE("ANYCOMPATIBLENONARRAY", 5079)
#ifndef PHP_PQ_OID_ANYCOMPATIBLERANGE
# define PHP_PQ_OID_ANYCOMPATIBLERANGE 5080
#endif
PHP_PQ_TYPE("ANYCOMPATIBLERANGE", 5080)
#ifndef PHP_PQ_OID_INT4MULTIRANGEARRAY
# define PHP_PQ_OID_INT4MULTIRANGEARRAY 6150
#endif
PHP_PQ_TYPE("INT4MULTIRANGEARRAY", 6150)
#ifndef PHP_PQ_OID_NUMMULTIRANGEARRAY
# define PHP_PQ_OID_NUMMULTIRANGEARRAY 6151
#endif
PHP_PQ_TYPE("NUMMULTIRANGEARRAY", 6151)
#ifndef PHP_PQ_OID_TSMULTIRANGEARRAY
# define PHP_PQ_OID_TSMULTIRANGEARRAY 6152
#endif
PHP_PQ_TYPE("TSMULTIRANGEARRAY", 6152)
#ifndef PHP_PQ_OID_TSTZMULTIRANGEARRAY
# define PHP_PQ_OID_TSTZMULTIRANGEARRAY 6153
#endif
PHP_PQ_TYPE("TSTZMULTIRANGEARRAY", 6153)
#ifndef PHP_PQ_OID_DATEMULTIRANGEARRAY
# define PHP_PQ_OID_DATEMULTIRANGEARRAY 6155
#endif
PHP_PQ_TYPE("DATEMULTIRANGEARRAY", 6155)
#ifndef PHP_PQ_OID_INT8MULTIRANGEARRAY
# define PHP_PQ_OID_INT8MULTIRANGEARRAY 6157
#endif
PHP_PQ_TYPE("INT8MULTIRANGEARRAY", 6157)
#ifndef PHP_PQ_OID_REGDATABASE
# define PHP_PQ_OID_REGDATABASE 8326
#endif
PHP_PQ_TYPE("REGDATABASE", 8326)
#ifndef PHP_PQ_OID_REGDATABASEARRAY
# define PHP_PQ_OID_REGDATABASEARRAY 8327
#endif
PHP_PQ_TYPE("REGDATABASEARRAY", 8327)
#ifndef PHP_PQ_TYPE_IS_ARRAY
# define PHP_PQ_TYPE_IS_ARRAY(oid) ( \
0 \
|| ((oid) == 143) \
|| ((oid) == 199) \
|| ((oid) == 210) \
|| ((oid) == 270) \
|| ((oid) == 271) \
|| ((oid) == 272) \
|| ((oid) == 273) \
|| ((oid) == 629) \
|| ((oid) == 651) \
|| ((oid) == 719) \
|| ((oid) == 775) \
|| ((oid) == 791) \
|| ((oid) == 1000) \
|| ((oid) == 1001) \
|| ((oid) == 1002) \
|| ((oid) == 1003) \
|| ((oid) == 1005) \
|| ((oid) == 1006) \
|| ((oid) == 1007) \
|| ((oid) == 1008) \
|| ((oid) == 1009) \
|| ((oid) == 1010) \
|| ((oid) == 1011) \
|| ((oid) == 1012) \
|| ((oid) == 1013) \
|| ((oid) == 1014) \
|| ((oid) == 1015) \
|| ((oid) == 1016) \
|| ((oid) == 1017) \
|| ((oid) == 1018) \
|| ((oid) == 1019) \
|| ((oid) == 1020) \
|| ((oid) == 1021) \
|| ((oid) == 1022) \
|| ((oid) == 1027) \
|| ((oid) == 1028) \
|| ((oid) == 1034) \
|| ((oid) == 1040) \
|| ((oid) == 1041) \
|| ((oid) == 1115) \
|| ((oid) == 1182) \
|| ((oid) == 1183) \
|| ((oid) == 1185) \
|| ((oid) == 1187) \
|| ((oid) == 1231) \
|| ((oid) == 1263) \
|| ((oid) == 1270) \
|| ((oid) == 1561) \
|| ((oid) == 1563) \
|| ((oid) == 2201) \
|| ((oid) == 2207) \
|| ((oid) == 2208) \
|| ((oid) == 2209) \
|| ((oid) == 2210) \
|| ((oid) == 2211) \
|| ((oid) == 2949) \
|| ((oid) == 2951) \
|| ((oid) == 3221) \
|| ((oid) == 3643) \
|| ((oid) == 3644) \
|| ((oid) == 3645) \
|| ((oid) == 3735) \
|| ((oid) == 3770) \
|| ((oid) == 3807) \
|| ((oid) == 3905) \
|| ((oid) == 3907) \
|| ((oid) == 3909) \
|| ((oid) == 3911) \
|| ((oid) == 3913) \
|| ((oid) == 3927) \
|| ((oid) == 4073) \
|| ((oid) == 4090) \
|| ((oid) == 4097) \
|| ((oid) == 4192) \
|| ((oid) == 5039) \
|| ((oid) == 6150) \
|| ((oid) == 6151) \
|| ((oid) == 6152) \
|| ((oid) == 6153) \
|| ((oid) == 6155) \
|| ((oid) == 6157) \
|| ((oid) == 8327) \
)
#endif
#ifndef PHP_PQ_TYPE_OF_ARRAY
# define PHP_PQ_TYPE_OF_ARRAY(oid) ( \
(oid) == 143 ? 142 : \
(oid) == 199 ? 114 : \
(oid) == 210 ? 71 : \
(oid) == 270 ? 75 : \
(oid) == 271 ? 5069 : \
(oid) == 272 ? 81 : \
(oid) == 273 ? 83 : \
(oid) == 629 ? 628 : \
(oid) == 651 ? 650 : \
(oid) == 719 ? 718 : \
(oid) == 775 ? 774 : \
(oid) == 791 ? 790 : \
(oid) == 1000 ? 16 : \
(oid) == 1001 ? 17 : \
(oid) == 1002 ? 18 : \
(oid) == 1003 ? 19 : \
(oid) == 1005 ? 21 : \
(oid) == 1006 ? 22 : \
(oid) == 1007 ? 23 : \
(oid) == 1008 ? 24 : \
(oid) == 1009 ? 25 : \
(oid) == 1010 ? 27 : \
(oid) == 1011 ? 28 : \
(oid) == 1012 ? 29 : \
(oid) == 1013 ? 30 : \
(oid) == 1014 ? 1042 : \
(oid) == 1015 ? 1043 : \
(oid) == 1016 ? 20 : \
(oid) == 1017 ? 600 : \
(oid) == 1018 ? 601 : \
(oid) == 1019 ? 602 : \
(oid) == 1020 ? 603 : \
(oid) == 1021 ? 700 : \
(oid) == 1022 ? 701 : \
(oid) == 1027 ? 604 : \
(oid) == 1028 ? 26 : \
(oid) == 1034 ? 1033 : \
(oid) == 1040 ? 829 : \
(oid) == 1041 ? 869 : \
(oid) == 1115 ? 1114 : \
(oid) == 1182 ? 1082 : \
(oid) == 1183 ? 1083 : \
(oid) == 1185 ? 1184 : \
(oid) == 1187 ? 1186 : \
(oid) == 1231 ? 1700 : \
(oid) == 1263 ? 2275 : \
(oid) == 1270 ? 1266 : \
(oid) == 1561 ? 1560 : \
(oid) == 1563 ? 1562 : \
(oid) == 2201 ? 1790 : \
(oid) == 2207 ? 2202 : \
(oid) == 2208 ? 2203 : \
(oid) == 2209 ? 2204 : \
(oid) == 2210 ? 2205 : \
(oid) == 2211 ? 2206 : \
(oid) == 2949 ? 2970 : \
(oid) == 2951 ? 2950 : \
(oid) == 3221 ? 3220 : \
(oid) == 3643 ? 3614 : \
(oid) == 3644 ? 3642 : \
(oid) == 3645 ? 3615 : \
(oid) == 3735 ? 3734 : \
(oid) == 3770 ? 3769 : \
(oid) == 3807 ? 3802 : \
(oid) == 3905 ? 3904 : \
(oid) == 3907 ? 3906 : \
(oid) == 3909 ? 3908 : \
(oid) == 3911 ? 3910 : \
(oid) == 3913 ? 3912 : \
(oid) == 3927 ? 3926 : \
(oid) == 4073 ? 4072 : \
(oid) == 4090 ? 4089 : \
(oid) == 4097 ? 4096 : \
(oid) == 4192 ? 4191 : \
(oid) == 5039 ? 5038 : \
(oid) == 6150 ? 4451 : \
(oid) == 6151 ? 4532 : \
(oid) == 6152 ? 4533 : \
(oid) == 6153 ? 4534 : \
(oid) == 6155 ? 4535 : \
(oid) == 6157 ? 4536 : \
(oid) == 8327 ? 8326 : \
0 \
)
#endif
#ifndef PHP_PQ_DELIM_OF_ARRAY
# define PHP_PQ_DELIM_OF_ARRAY(oid) ((char) ( \
(oid) == 1020 ? ';' : \
(oid) == 603 ? ';' : \
',' \
))
#endif