summaryrefslogtreecommitdiffstats
path: root/src/include/catalog/pg_amproc.dat
blob: 37b580883fcb90cb5807fa55332bde14fe086be4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
#----------------------------------------------------------------------
#
# pg_amproc.dat
#    Initial contents of the pg_amproc system catalog.
#
# Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# src/include/catalog/pg_amproc.dat
#
#----------------------------------------------------------------------

[

# btree
{ amprocfamily => 'btree/array_ops', amproclefttype => 'anyarray',
  amprocrighttype => 'anyarray', amprocnum => '1', amproc => 'btarraycmp' },
{ amprocfamily => 'btree/bit_ops', amproclefttype => 'bit',
  amprocrighttype => 'bit', amprocnum => '1', amproc => 'bitcmp' },
{ amprocfamily => 'btree/bit_ops', amproclefttype => 'bit',
  amprocrighttype => 'bit', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/bool_ops', amproclefttype => 'bool',
  amprocrighttype => 'bool', amprocnum => '1', amproc => 'btboolcmp' },
{ amprocfamily => 'btree/bool_ops', amproclefttype => 'bool',
  amprocrighttype => 'bool', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/bpchar_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '1', amproc => 'bpcharcmp' },
{ amprocfamily => 'btree/bpchar_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '2',
  amproc => 'bpchar_sortsupport' },
{ amprocfamily => 'btree/bpchar_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '4',
  amproc => 'btvarstrequalimage' },
{ amprocfamily => 'btree/bytea_ops', amproclefttype => 'bytea',
  amprocrighttype => 'bytea', amprocnum => '1', amproc => 'byteacmp' },
{ amprocfamily => 'btree/bytea_ops', amproclefttype => 'bytea',
  amprocrighttype => 'bytea', amprocnum => '2', amproc => 'bytea_sortsupport' },
{ amprocfamily => 'btree/bytea_ops', amproclefttype => 'bytea',
  amprocrighttype => 'bytea', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/char_ops', amproclefttype => 'char',
  amprocrighttype => 'char', amprocnum => '1', amproc => 'btcharcmp' },
{ amprocfamily => 'btree/char_ops', amproclefttype => 'char',
  amprocrighttype => 'char', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'date',
  amprocrighttype => 'date', amprocnum => '1', amproc => 'date_cmp' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'date',
  amprocrighttype => 'date', amprocnum => '2', amproc => 'date_sortsupport' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'date',
  amprocrighttype => 'date', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'date',
  amprocrighttype => 'timestamp', amprocnum => '1',
  amproc => 'date_cmp_timestamp' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'date',
  amprocrighttype => 'timestamptz', amprocnum => '1',
  amproc => 'date_cmp_timestamptz' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamp', amprocnum => '1', amproc => 'timestamp_cmp' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamp', amprocnum => '2',
  amproc => 'timestamp_sortsupport' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamp', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'date', amprocnum => '1', amproc => 'timestamp_cmp_date' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamptz', amprocnum => '1',
  amproc => 'timestamp_cmp_timestamptz' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamptz', amprocnum => '1',
  amproc => 'timestamptz_cmp' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamptz', amprocnum => '2',
  amproc => 'timestamp_sortsupport' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamptz', amprocnum => '4',
  amproc => 'btequalimage' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'date', amprocnum => '1',
  amproc => 'timestamptz_cmp_date' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamp', amprocnum => '1',
  amproc => 'timestamptz_cmp_timestamp' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'date',
  amprocrighttype => 'interval', amprocnum => '3',
  amproc => 'in_range(date,date,interval,bool,bool)' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'interval', amprocnum => '3',
  amproc => 'in_range(timestamp,timestamp,interval,bool,bool)' },
{ amprocfamily => 'btree/datetime_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'interval', amprocnum => '3',
  amproc => 'in_range(timestamptz,timestamptz,interval,bool,bool)' },
{ amprocfamily => 'btree/float_ops', amproclefttype => 'float4',
  amprocrighttype => 'float4', amprocnum => '1', amproc => 'btfloat4cmp' },
{ amprocfamily => 'btree/float_ops', amproclefttype => 'float4',
  amprocrighttype => 'float4', amprocnum => '2',
  amproc => 'btfloat4sortsupport' },
{ amprocfamily => 'btree/float_ops', amproclefttype => 'float4',
  amprocrighttype => 'float8', amprocnum => '1', amproc => 'btfloat48cmp' },
{ amprocfamily => 'btree/float_ops', amproclefttype => 'float8',
  amprocrighttype => 'float8', amprocnum => '1', amproc => 'btfloat8cmp' },
{ amprocfamily => 'btree/float_ops', amproclefttype => 'float8',
  amprocrighttype => 'float8', amprocnum => '2',
  amproc => 'btfloat8sortsupport' },
{ amprocfamily => 'btree/float_ops', amproclefttype => 'float8',
  amprocrighttype => 'float4', amprocnum => '1', amproc => 'btfloat84cmp' },
{ amprocfamily => 'btree/float_ops', amproclefttype => 'float8',
  amprocrighttype => 'float8', amprocnum => '3',
  amproc => 'in_range(float8,float8,float8,bool,bool)' },
{ amprocfamily => 'btree/float_ops', amproclefttype => 'float4',
  amprocrighttype => 'float8', amprocnum => '3',
  amproc => 'in_range(float4,float4,float8,bool,bool)' },
{ amprocfamily => 'btree/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '1', amproc => 'network_cmp' },
{ amprocfamily => 'btree/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '2',
  amproc => 'network_sortsupport' },
{ amprocfamily => 'btree/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int2',
  amprocrighttype => 'int2', amprocnum => '1', amproc => 'btint2cmp' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int2',
  amprocrighttype => 'int2', amprocnum => '2', amproc => 'btint2sortsupport' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int2',
  amprocrighttype => 'int2', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int2',
  amprocrighttype => 'int4', amprocnum => '1', amproc => 'btint24cmp' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int2',
  amprocrighttype => 'int8', amprocnum => '1', amproc => 'btint28cmp' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int2',
  amprocrighttype => 'int8', amprocnum => '3',
  amproc => 'in_range(int2,int2,int8,bool,bool)' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int2',
  amprocrighttype => 'int4', amprocnum => '3',
  amproc => 'in_range(int2,int2,int4,bool,bool)' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int2',
  amprocrighttype => 'int2', amprocnum => '3',
  amproc => 'in_range(int2,int2,int2,bool,bool)' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int4',
  amprocrighttype => 'int4', amprocnum => '1', amproc => 'btint4cmp' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int4',
  amprocrighttype => 'int4', amprocnum => '2', amproc => 'btint4sortsupport' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int4',
  amprocrighttype => 'int4', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int4',
  amprocrighttype => 'int8', amprocnum => '1', amproc => 'btint48cmp' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int4',
  amprocrighttype => 'int2', amprocnum => '1', amproc => 'btint42cmp' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int4',
  amprocrighttype => 'int8', amprocnum => '3',
  amproc => 'in_range(int4,int4,int8,bool,bool)' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int4',
  amprocrighttype => 'int4', amprocnum => '3',
  amproc => 'in_range(int4,int4,int4,bool,bool)' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int4',
  amprocrighttype => 'int2', amprocnum => '3',
  amproc => 'in_range(int4,int4,int2,bool,bool)' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int8',
  amprocrighttype => 'int8', amprocnum => '1', amproc => 'btint8cmp' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int8',
  amprocrighttype => 'int8', amprocnum => '2', amproc => 'btint8sortsupport' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int8',
  amprocrighttype => 'int8', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int8',
  amprocrighttype => 'int4', amprocnum => '1', amproc => 'btint84cmp' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int8',
  amprocrighttype => 'int2', amprocnum => '1', amproc => 'btint82cmp' },
{ amprocfamily => 'btree/integer_ops', amproclefttype => 'int8',
  amprocrighttype => 'int8', amprocnum => '3',
  amproc => 'in_range(int8,int8,int8,bool,bool)' },
{ amprocfamily => 'btree/interval_ops', amproclefttype => 'interval',
  amprocrighttype => 'interval', amprocnum => '1', amproc => 'interval_cmp' },
{ amprocfamily => 'btree/interval_ops', amproclefttype => 'interval',
  amprocrighttype => 'interval', amprocnum => '3',
  amproc => 'in_range(interval,interval,interval,bool,bool)' },
{ amprocfamily => 'btree/interval_ops', amproclefttype => 'interval',
  amprocrighttype => 'interval', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/macaddr_ops', amproclefttype => 'macaddr',
  amprocrighttype => 'macaddr', amprocnum => '1', amproc => 'macaddr_cmp' },
{ amprocfamily => 'btree/macaddr_ops', amproclefttype => 'macaddr',
  amprocrighttype => 'macaddr', amprocnum => '2',
  amproc => 'macaddr_sortsupport' },
{ amprocfamily => 'btree/macaddr_ops', amproclefttype => 'macaddr',
  amprocrighttype => 'macaddr', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/numeric_ops', amproclefttype => 'numeric',
  amprocrighttype => 'numeric', amprocnum => '1', amproc => 'numeric_cmp' },
{ amprocfamily => 'btree/numeric_ops', amproclefttype => 'numeric',
  amprocrighttype => 'numeric', amprocnum => '2',
  amproc => 'numeric_sortsupport' },
{ amprocfamily => 'btree/numeric_ops', amproclefttype => 'numeric',
  amprocrighttype => 'numeric', amprocnum => '3',
  amproc => 'in_range(numeric,numeric,numeric,bool,bool)' },
{ amprocfamily => 'btree/oid_ops', amproclefttype => 'oid',
  amprocrighttype => 'oid', amprocnum => '1', amproc => 'btoidcmp' },
{ amprocfamily => 'btree/oid_ops', amproclefttype => 'oid',
  amprocrighttype => 'oid', amprocnum => '2', amproc => 'btoidsortsupport' },
{ amprocfamily => 'btree/oid_ops', amproclefttype => 'oid',
  amprocrighttype => 'oid', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/oidvector_ops', amproclefttype => 'oidvector',
  amprocrighttype => 'oidvector', amprocnum => '1',
  amproc => 'btoidvectorcmp' },
{ amprocfamily => 'btree/oidvector_ops', amproclefttype => 'oidvector',
  amprocrighttype => 'oidvector', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/text_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '1', amproc => 'bttextcmp' },
{ amprocfamily => 'btree/text_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '2', amproc => 'bttextsortsupport' },
{ amprocfamily => 'btree/text_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '4', amproc => 'btvarstrequalimage' },
{ amprocfamily => 'btree/text_ops', amproclefttype => 'name',
  amprocrighttype => 'name', amprocnum => '1', amproc => 'btnamecmp' },
{ amprocfamily => 'btree/text_ops', amproclefttype => 'name',
  amprocrighttype => 'name', amprocnum => '2', amproc => 'btnamesortsupport' },
{ amprocfamily => 'btree/text_ops', amproclefttype => 'name',
  amprocrighttype => 'name', amprocnum => '4', amproc => 'btvarstrequalimage' },
{ amprocfamily => 'btree/text_ops', amproclefttype => 'name',
  amprocrighttype => 'text', amprocnum => '1', amproc => 'btnametextcmp' },
{ amprocfamily => 'btree/text_ops', amproclefttype => 'text',
  amprocrighttype => 'name', amprocnum => '1', amproc => 'bttextnamecmp' },
{ amprocfamily => 'btree/time_ops', amproclefttype => 'time',
  amprocrighttype => 'time', amprocnum => '1', amproc => 'time_cmp' },
{ amprocfamily => 'btree/time_ops', amproclefttype => 'time',
  amprocrighttype => 'time', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/time_ops', amproclefttype => 'time',
  amprocrighttype => 'interval', amprocnum => '3',
  amproc => 'in_range(time,time,interval,bool,bool)' },
{ amprocfamily => 'btree/timetz_ops', amproclefttype => 'timetz',
  amprocrighttype => 'timetz', amprocnum => '1', amproc => 'timetz_cmp' },
{ amprocfamily => 'btree/timetz_ops', amproclefttype => 'timetz',
  amprocrighttype => 'timetz', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/timetz_ops', amproclefttype => 'timetz',
  amprocrighttype => 'interval', amprocnum => '3',
  amproc => 'in_range(timetz,timetz,interval,bool,bool)' },
{ amprocfamily => 'btree/varbit_ops', amproclefttype => 'varbit',
  amprocrighttype => 'varbit', amprocnum => '1', amproc => 'varbitcmp' },
{ amprocfamily => 'btree/varbit_ops', amproclefttype => 'varbit',
  amprocrighttype => 'varbit', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/text_pattern_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '1', amproc => 'bttext_pattern_cmp' },
{ amprocfamily => 'btree/text_pattern_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '2',
  amproc => 'bttext_pattern_sortsupport' },
{ amprocfamily => 'btree/text_pattern_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/bpchar_pattern_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '1',
  amproc => 'btbpchar_pattern_cmp' },
{ amprocfamily => 'btree/bpchar_pattern_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '2',
  amproc => 'btbpchar_pattern_sortsupport' },
{ amprocfamily => 'btree/bpchar_pattern_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/money_ops', amproclefttype => 'money',
  amprocrighttype => 'money', amprocnum => '1', amproc => 'cash_cmp' },
{ amprocfamily => 'btree/money_ops', amproclefttype => 'money',
  amprocrighttype => 'money', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/tid_ops', amproclefttype => 'tid',
  amprocrighttype => 'tid', amprocnum => '1', amproc => 'bttidcmp' },
{ amprocfamily => 'btree/tid_ops', amproclefttype => 'tid',
  amprocrighttype => 'tid', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/uuid_ops', amproclefttype => 'uuid',
  amprocrighttype => 'uuid', amprocnum => '1', amproc => 'uuid_cmp' },
{ amprocfamily => 'btree/uuid_ops', amproclefttype => 'uuid',
  amprocrighttype => 'uuid', amprocnum => '2', amproc => 'uuid_sortsupport' },
{ amprocfamily => 'btree/uuid_ops', amproclefttype => 'uuid',
  amprocrighttype => 'uuid', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/record_ops', amproclefttype => 'record',
  amprocrighttype => 'record', amprocnum => '1', amproc => 'btrecordcmp' },
{ amprocfamily => 'btree/record_image_ops', amproclefttype => 'record',
  amprocrighttype => 'record', amprocnum => '1', amproc => 'btrecordimagecmp' },
{ amprocfamily => 'btree/pg_lsn_ops', amproclefttype => 'pg_lsn',
  amprocrighttype => 'pg_lsn', amprocnum => '1', amproc => 'pg_lsn_cmp' },
{ amprocfamily => 'btree/pg_lsn_ops', amproclefttype => 'pg_lsn',
  amprocrighttype => 'pg_lsn', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/macaddr8_ops', amproclefttype => 'macaddr8',
  amprocrighttype => 'macaddr8', amprocnum => '1', amproc => 'macaddr8_cmp' },
{ amprocfamily => 'btree/macaddr8_ops', amproclefttype => 'macaddr8',
  amprocrighttype => 'macaddr8', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/enum_ops', amproclefttype => 'anyenum',
  amprocrighttype => 'anyenum', amprocnum => '1', amproc => 'enum_cmp' },
{ amprocfamily => 'btree/enum_ops', amproclefttype => 'anyenum',
  amprocrighttype => 'anyenum', amprocnum => '4', amproc => 'btequalimage' },
{ amprocfamily => 'btree/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '1', amproc => 'tsvector_cmp' },
{ amprocfamily => 'btree/tsquery_ops', amproclefttype => 'tsquery',
  amprocrighttype => 'tsquery', amprocnum => '1', amproc => 'tsquery_cmp' },
{ amprocfamily => 'btree/range_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '1', amproc => 'range_cmp' },
{ amprocfamily => 'btree/jsonb_ops', amproclefttype => 'jsonb',
  amprocrighttype => 'jsonb', amprocnum => '1', amproc => 'jsonb_cmp' },
{ amprocfamily => 'btree/xid8_ops', amproclefttype => 'xid8',
  amprocrighttype => 'xid8', amprocnum => '1', amproc => 'xid8cmp' },
{ amprocfamily => 'btree/xid8_ops', amproclefttype => 'xid8',
  amprocrighttype => 'xid8', amprocnum => '4', amproc => 'btequalimage' },

# hash
{ amprocfamily => 'hash/bpchar_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '1', amproc => 'hashbpchar' },
{ amprocfamily => 'hash/bpchar_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '2',
  amproc => 'hashbpcharextended' },
{ amprocfamily => 'hash/char_ops', amproclefttype => 'char',
  amprocrighttype => 'char', amprocnum => '1', amproc => 'hashchar' },
{ amprocfamily => 'hash/char_ops', amproclefttype => 'char',
  amprocrighttype => 'char', amprocnum => '2', amproc => 'hashcharextended' },
{ amprocfamily => 'hash/date_ops', amproclefttype => 'date',
  amprocrighttype => 'date', amprocnum => '1', amproc => 'hashint4' },
{ amprocfamily => 'hash/date_ops', amproclefttype => 'date',
  amprocrighttype => 'date', amprocnum => '2', amproc => 'hashint4extended' },
{ amprocfamily => 'hash/array_ops', amproclefttype => 'anyarray',
  amprocrighttype => 'anyarray', amprocnum => '1', amproc => 'hash_array' },
{ amprocfamily => 'hash/array_ops', amproclefttype => 'anyarray',
  amprocrighttype => 'anyarray', amprocnum => '2',
  amproc => 'hash_array_extended' },
{ amprocfamily => 'hash/float_ops', amproclefttype => 'float4',
  amprocrighttype => 'float4', amprocnum => '1', amproc => 'hashfloat4' },
{ amprocfamily => 'hash/float_ops', amproclefttype => 'float4',
  amprocrighttype => 'float4', amprocnum => '2',
  amproc => 'hashfloat4extended' },
{ amprocfamily => 'hash/float_ops', amproclefttype => 'float8',
  amprocrighttype => 'float8', amprocnum => '1', amproc => 'hashfloat8' },
{ amprocfamily => 'hash/float_ops', amproclefttype => 'float8',
  amprocrighttype => 'float8', amprocnum => '2',
  amproc => 'hashfloat8extended' },
{ amprocfamily => 'hash/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '1', amproc => 'hashinet' },
{ amprocfamily => 'hash/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '2', amproc => 'hashinetextended' },
{ amprocfamily => 'hash/integer_ops', amproclefttype => 'int2',
  amprocrighttype => 'int2', amprocnum => '1', amproc => 'hashint2' },
{ amprocfamily => 'hash/integer_ops', amproclefttype => 'int2',
  amprocrighttype => 'int2', amprocnum => '2', amproc => 'hashint2extended' },
{ amprocfamily => 'hash/integer_ops', amproclefttype => 'int4',
  amprocrighttype => 'int4', amprocnum => '1', amproc => 'hashint4' },
{ amprocfamily => 'hash/integer_ops', amproclefttype => 'int4',
  amprocrighttype => 'int4', amprocnum => '2', amproc => 'hashint4extended' },
{ amprocfamily => 'hash/integer_ops', amproclefttype => 'int8',
  amprocrighttype => 'int8', amprocnum => '1', amproc => 'hashint8' },
{ amprocfamily => 'hash/integer_ops', amproclefttype => 'int8',
  amprocrighttype => 'int8', amprocnum => '2', amproc => 'hashint8extended' },
{ amprocfamily => 'hash/interval_ops', amproclefttype => 'interval',
  amprocrighttype => 'interval', amprocnum => '1', amproc => 'interval_hash' },
{ amprocfamily => 'hash/interval_ops', amproclefttype => 'interval',
  amprocrighttype => 'interval', amprocnum => '2',
  amproc => 'interval_hash_extended' },
{ amprocfamily => 'hash/macaddr_ops', amproclefttype => 'macaddr',
  amprocrighttype => 'macaddr', amprocnum => '1', amproc => 'hashmacaddr' },
{ amprocfamily => 'hash/macaddr_ops', amproclefttype => 'macaddr',
  amprocrighttype => 'macaddr', amprocnum => '2',
  amproc => 'hashmacaddrextended' },
{ amprocfamily => 'hash/oid_ops', amproclefttype => 'oid',
  amprocrighttype => 'oid', amprocnum => '1', amproc => 'hashoid' },
{ amprocfamily => 'hash/oid_ops', amproclefttype => 'oid',
  amprocrighttype => 'oid', amprocnum => '2', amproc => 'hashoidextended' },
{ amprocfamily => 'hash/oidvector_ops', amproclefttype => 'oidvector',
  amprocrighttype => 'oidvector', amprocnum => '1', amproc => 'hashoidvector' },
{ amprocfamily => 'hash/oidvector_ops', amproclefttype => 'oidvector',
  amprocrighttype => 'oidvector', amprocnum => '2',
  amproc => 'hashoidvectorextended' },
{ amprocfamily => 'hash/text_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '1', amproc => 'hashtext' },
{ amprocfamily => 'hash/text_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '2', amproc => 'hashtextextended' },
{ amprocfamily => 'hash/text_ops', amproclefttype => 'name',
  amprocrighttype => 'name', amprocnum => '1', amproc => 'hashname' },
{ amprocfamily => 'hash/text_ops', amproclefttype => 'name',
  amprocrighttype => 'name', amprocnum => '2', amproc => 'hashnameextended' },
{ amprocfamily => 'hash/time_ops', amproclefttype => 'time',
  amprocrighttype => 'time', amprocnum => '1', amproc => 'time_hash' },
{ amprocfamily => 'hash/time_ops', amproclefttype => 'time',
  amprocrighttype => 'time', amprocnum => '2', amproc => 'time_hash_extended' },
{ amprocfamily => 'hash/numeric_ops', amproclefttype => 'numeric',
  amprocrighttype => 'numeric', amprocnum => '1', amproc => 'hash_numeric' },
{ amprocfamily => 'hash/numeric_ops', amproclefttype => 'numeric',
  amprocrighttype => 'numeric', amprocnum => '2',
  amproc => 'hash_numeric_extended' },
{ amprocfamily => 'hash/timestamptz_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamptz', amprocnum => '1',
  amproc => 'timestamp_hash' },
{ amprocfamily => 'hash/timestamptz_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamptz', amprocnum => '2',
  amproc => 'timestamp_hash_extended' },
{ amprocfamily => 'hash/timetz_ops', amproclefttype => 'timetz',
  amprocrighttype => 'timetz', amprocnum => '1', amproc => 'timetz_hash' },
{ amprocfamily => 'hash/timetz_ops', amproclefttype => 'timetz',
  amprocrighttype => 'timetz', amprocnum => '2',
  amproc => 'timetz_hash_extended' },
{ amprocfamily => 'hash/timestamp_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamp', amprocnum => '1',
  amproc => 'timestamp_hash' },
{ amprocfamily => 'hash/timestamp_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamp', amprocnum => '2',
  amproc => 'timestamp_hash_extended' },
{ amprocfamily => 'hash/bool_ops', amproclefttype => 'bool',
  amprocrighttype => 'bool', amprocnum => '1', amproc => 'hashchar' },
{ amprocfamily => 'hash/bool_ops', amproclefttype => 'bool',
  amprocrighttype => 'bool', amprocnum => '2', amproc => 'hashcharextended' },
{ amprocfamily => 'hash/bytea_ops', amproclefttype => 'bytea',
  amprocrighttype => 'bytea', amprocnum => '1', amproc => 'hashvarlena' },
{ amprocfamily => 'hash/bytea_ops', amproclefttype => 'bytea',
  amprocrighttype => 'bytea', amprocnum => '2',
  amproc => 'hashvarlenaextended' },
{ amprocfamily => 'hash/xid_ops', amproclefttype => 'xid',
  amprocrighttype => 'xid', amprocnum => '1', amproc => 'hashint4' },
{ amprocfamily => 'hash/xid_ops', amproclefttype => 'xid',
  amprocrighttype => 'xid', amprocnum => '2', amproc => 'hashint4extended' },
{ amprocfamily => 'hash/xid8_ops', amproclefttype => 'xid8',
  amprocrighttype => 'xid8', amprocnum => '1', amproc => 'hashint8' },
{ amprocfamily => 'hash/xid8_ops', amproclefttype => 'xid8',
  amprocrighttype => 'xid8', amprocnum => '2', amproc => 'hashint8extended' },
{ amprocfamily => 'hash/cid_ops', amproclefttype => 'cid',
  amprocrighttype => 'cid', amprocnum => '1', amproc => 'hashint4' },
{ amprocfamily => 'hash/cid_ops', amproclefttype => 'cid',
  amprocrighttype => 'cid', amprocnum => '2', amproc => 'hashint4extended' },
{ amprocfamily => 'hash/tid_ops', amproclefttype => 'tid',
  amprocrighttype => 'tid', amprocnum => '1', amproc => 'hashtid' },
{ amprocfamily => 'hash/tid_ops', amproclefttype => 'tid',
  amprocrighttype => 'tid', amprocnum => '2', amproc => 'hashtidextended' },
{ amprocfamily => 'hash/text_pattern_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '1', amproc => 'hashtext' },
{ amprocfamily => 'hash/text_pattern_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '2', amproc => 'hashtextextended' },
{ amprocfamily => 'hash/bpchar_pattern_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '1', amproc => 'hashbpchar' },
{ amprocfamily => 'hash/bpchar_pattern_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '2',
  amproc => 'hashbpcharextended' },
{ amprocfamily => 'hash/aclitem_ops', amproclefttype => 'aclitem',
  amprocrighttype => 'aclitem', amprocnum => '1', amproc => 'hash_aclitem' },
{ amprocfamily => 'hash/aclitem_ops', amproclefttype => 'aclitem',
  amprocrighttype => 'aclitem', amprocnum => '2',
  amproc => 'hash_aclitem_extended' },
{ amprocfamily => 'hash/uuid_ops', amproclefttype => 'uuid',
  amprocrighttype => 'uuid', amprocnum => '1', amproc => 'uuid_hash' },
{ amprocfamily => 'hash/uuid_ops', amproclefttype => 'uuid',
  amprocrighttype => 'uuid', amprocnum => '2', amproc => 'uuid_hash_extended' },
{ amprocfamily => 'hash/pg_lsn_ops', amproclefttype => 'pg_lsn',
  amprocrighttype => 'pg_lsn', amprocnum => '1', amproc => 'pg_lsn_hash' },
{ amprocfamily => 'hash/pg_lsn_ops', amproclefttype => 'pg_lsn',
  amprocrighttype => 'pg_lsn', amprocnum => '2',
  amproc => 'pg_lsn_hash_extended' },
{ amprocfamily => 'hash/macaddr8_ops', amproclefttype => 'macaddr8',
  amprocrighttype => 'macaddr8', amprocnum => '1', amproc => 'hashmacaddr8' },
{ amprocfamily => 'hash/macaddr8_ops', amproclefttype => 'macaddr8',
  amprocrighttype => 'macaddr8', amprocnum => '2',
  amproc => 'hashmacaddr8extended' },
{ amprocfamily => 'hash/enum_ops', amproclefttype => 'anyenum',
  amprocrighttype => 'anyenum', amprocnum => '1', amproc => 'hashenum' },
{ amprocfamily => 'hash/enum_ops', amproclefttype => 'anyenum',
  amprocrighttype => 'anyenum', amprocnum => '2',
  amproc => 'hashenumextended' },
{ amprocfamily => 'hash/range_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '1', amproc => 'hash_range' },
{ amprocfamily => 'hash/range_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '2',
  amproc => 'hash_range_extended' },
{ amprocfamily => 'hash/jsonb_ops', amproclefttype => 'jsonb',
  amprocrighttype => 'jsonb', amprocnum => '1', amproc => 'jsonb_hash' },
{ amprocfamily => 'hash/jsonb_ops', amproclefttype => 'jsonb',
  amprocrighttype => 'jsonb', amprocnum => '2',
  amproc => 'jsonb_hash_extended' },

# gist
{ amprocfamily => 'gist/point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '1',
  amproc => 'gist_point_consistent' },
{ amprocfamily => 'gist/point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '2', amproc => 'gist_box_union' },
{ amprocfamily => 'gist/point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '3',
  amproc => 'gist_point_compress' },
{ amprocfamily => 'gist/point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '5', amproc => 'gist_box_penalty' },
{ amprocfamily => 'gist/point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '6',
  amproc => 'gist_box_picksplit' },
{ amprocfamily => 'gist/point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '7', amproc => 'gist_box_same' },
{ amprocfamily => 'gist/point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '8',
  amproc => 'gist_point_distance' },
{ amprocfamily => 'gist/point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '9', amproc => 'gist_point_fetch' },
{ amprocfamily => 'gist/box_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '1', amproc => 'gist_box_consistent' },
{ amprocfamily => 'gist/box_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '2', amproc => 'gist_box_union' },
{ amprocfamily => 'gist/box_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '5', amproc => 'gist_box_penalty' },
{ amprocfamily => 'gist/box_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '6', amproc => 'gist_box_picksplit' },
{ amprocfamily => 'gist/box_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '7', amproc => 'gist_box_same' },
{ amprocfamily => 'gist/box_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '8', amproc => 'gist_box_distance' },
{ amprocfamily => 'gist/poly_ops', amproclefttype => 'polygon',
  amprocrighttype => 'polygon', amprocnum => '1',
  amproc => 'gist_poly_consistent' },
{ amprocfamily => 'gist/poly_ops', amproclefttype => 'polygon',
  amprocrighttype => 'polygon', amprocnum => '2', amproc => 'gist_box_union' },
{ amprocfamily => 'gist/poly_ops', amproclefttype => 'polygon',
  amprocrighttype => 'polygon', amprocnum => '3',
  amproc => 'gist_poly_compress' },
{ amprocfamily => 'gist/poly_ops', amproclefttype => 'polygon',
  amprocrighttype => 'polygon', amprocnum => '5',
  amproc => 'gist_box_penalty' },
{ amprocfamily => 'gist/poly_ops', amproclefttype => 'polygon',
  amprocrighttype => 'polygon', amprocnum => '6',
  amproc => 'gist_box_picksplit' },
{ amprocfamily => 'gist/poly_ops', amproclefttype => 'polygon',
  amprocrighttype => 'polygon', amprocnum => '7', amproc => 'gist_box_same' },
{ amprocfamily => 'gist/poly_ops', amproclefttype => 'polygon',
  amprocrighttype => 'polygon', amprocnum => '8',
  amproc => 'gist_poly_distance' },
{ amprocfamily => 'gist/circle_ops', amproclefttype => 'circle',
  amprocrighttype => 'circle', amprocnum => '1',
  amproc => 'gist_circle_consistent' },
{ amprocfamily => 'gist/circle_ops', amproclefttype => 'circle',
  amprocrighttype => 'circle', amprocnum => '2', amproc => 'gist_box_union' },
{ amprocfamily => 'gist/circle_ops', amproclefttype => 'circle',
  amprocrighttype => 'circle', amprocnum => '3',
  amproc => 'gist_circle_compress' },
{ amprocfamily => 'gist/circle_ops', amproclefttype => 'circle',
  amprocrighttype => 'circle', amprocnum => '5', amproc => 'gist_box_penalty' },
{ amprocfamily => 'gist/circle_ops', amproclefttype => 'circle',
  amprocrighttype => 'circle', amprocnum => '6',
  amproc => 'gist_box_picksplit' },
{ amprocfamily => 'gist/circle_ops', amproclefttype => 'circle',
  amprocrighttype => 'circle', amprocnum => '7', amproc => 'gist_box_same' },
{ amprocfamily => 'gist/circle_ops', amproclefttype => 'circle',
  amprocrighttype => 'circle', amprocnum => '8',
  amproc => 'gist_circle_distance' },
{ amprocfamily => 'gist/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '1',
  amproc => 'gtsvector_consistent(internal,tsvector,int2,oid,internal)' },
{ amprocfamily => 'gist/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '2',
  amproc => 'gtsvector_union' },
{ amprocfamily => 'gist/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '3',
  amproc => 'gtsvector_compress' },
{ amprocfamily => 'gist/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '4',
  amproc => 'gtsvector_decompress' },
{ amprocfamily => 'gist/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '5',
  amproc => 'gtsvector_penalty' },
{ amprocfamily => 'gist/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '6',
  amproc => 'gtsvector_picksplit' },
{ amprocfamily => 'gist/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '7', amproc => 'gtsvector_same' },
{ amprocfamily => 'gist/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '10',
  amproc => 'gtsvector_options' },
{ amprocfamily => 'gist/tsquery_ops', amproclefttype => 'tsquery',
  amprocrighttype => 'tsquery', amprocnum => '1',
  amproc => 'gtsquery_consistent(internal,tsquery,int2,oid,internal)' },
{ amprocfamily => 'gist/tsquery_ops', amproclefttype => 'tsquery',
  amprocrighttype => 'tsquery', amprocnum => '2', amproc => 'gtsquery_union' },
{ amprocfamily => 'gist/tsquery_ops', amproclefttype => 'tsquery',
  amprocrighttype => 'tsquery', amprocnum => '3',
  amproc => 'gtsquery_compress' },
{ amprocfamily => 'gist/tsquery_ops', amproclefttype => 'tsquery',
  amprocrighttype => 'tsquery', amprocnum => '5',
  amproc => 'gtsquery_penalty' },
{ amprocfamily => 'gist/tsquery_ops', amproclefttype => 'tsquery',
  amprocrighttype => 'tsquery', amprocnum => '6',
  amproc => 'gtsquery_picksplit' },
{ amprocfamily => 'gist/tsquery_ops', amproclefttype => 'tsquery',
  amprocrighttype => 'tsquery', amprocnum => '7', amproc => 'gtsquery_same' },
{ amprocfamily => 'gist/range_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '1',
  amproc => 'range_gist_consistent' },
{ amprocfamily => 'gist/range_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '2',
  amproc => 'range_gist_union' },
{ amprocfamily => 'gist/range_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '5',
  amproc => 'range_gist_penalty' },
{ amprocfamily => 'gist/range_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '6',
  amproc => 'range_gist_picksplit' },
{ amprocfamily => 'gist/range_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '7',
  amproc => 'range_gist_same' },
{ amprocfamily => 'gist/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '1',
  amproc => 'inet_gist_consistent' },
{ amprocfamily => 'gist/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '2', amproc => 'inet_gist_union' },
{ amprocfamily => 'gist/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '3', amproc => 'inet_gist_compress' },
{ amprocfamily => 'gist/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '5', amproc => 'inet_gist_penalty' },
{ amprocfamily => 'gist/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '6',
  amproc => 'inet_gist_picksplit' },
{ amprocfamily => 'gist/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '7', amproc => 'inet_gist_same' },
{ amprocfamily => 'gist/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '9', amproc => 'inet_gist_fetch' },

# gin
{ amprocfamily => 'gin/array_ops', amproclefttype => 'anyarray',
  amprocrighttype => 'anyarray', amprocnum => '2',
  amproc => 'ginarrayextract(anyarray,internal,internal)' },
{ amprocfamily => 'gin/array_ops', amproclefttype => 'anyarray',
  amprocrighttype => 'anyarray', amprocnum => '3',
  amproc => 'ginqueryarrayextract' },
{ amprocfamily => 'gin/array_ops', amproclefttype => 'anyarray',
  amprocrighttype => 'anyarray', amprocnum => '4',
  amproc => 'ginarrayconsistent' },
{ amprocfamily => 'gin/array_ops', amproclefttype => 'anyarray',
  amprocrighttype => 'anyarray', amprocnum => '6',
  amproc => 'ginarraytriconsistent' },
{ amprocfamily => 'gin/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '1',
  amproc => 'gin_cmp_tslexeme' },
{ amprocfamily => 'gin/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '2',
  amproc => 'gin_extract_tsvector(tsvector,internal,internal)' },
{ amprocfamily => 'gin/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '3',
  amproc => 'gin_extract_tsquery(tsvector,internal,int2,internal,internal,internal,internal)' },
{ amprocfamily => 'gin/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '4',
  amproc => 'gin_tsquery_consistent(internal,int2,tsvector,int4,internal,internal,internal,internal)' },
{ amprocfamily => 'gin/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '5', amproc => 'gin_cmp_prefix' },
{ amprocfamily => 'gin/tsvector_ops', amproclefttype => 'tsvector',
  amprocrighttype => 'tsvector', amprocnum => '6',
  amproc => 'gin_tsquery_triconsistent' },
{ amprocfamily => 'gin/jsonb_ops', amproclefttype => 'jsonb',
  amprocrighttype => 'jsonb', amprocnum => '1', amproc => 'gin_compare_jsonb' },
{ amprocfamily => 'gin/jsonb_ops', amproclefttype => 'jsonb',
  amprocrighttype => 'jsonb', amprocnum => '2', amproc => 'gin_extract_jsonb' },
{ amprocfamily => 'gin/jsonb_ops', amproclefttype => 'jsonb',
  amprocrighttype => 'jsonb', amprocnum => '3',
  amproc => 'gin_extract_jsonb_query' },
{ amprocfamily => 'gin/jsonb_ops', amproclefttype => 'jsonb',
  amprocrighttype => 'jsonb', amprocnum => '4',
  amproc => 'gin_consistent_jsonb' },
{ amprocfamily => 'gin/jsonb_ops', amproclefttype => 'jsonb',
  amprocrighttype => 'jsonb', amprocnum => '6',
  amproc => 'gin_triconsistent_jsonb' },
{ amprocfamily => 'gin/jsonb_path_ops', amproclefttype => 'jsonb',
  amprocrighttype => 'jsonb', amprocnum => '1', amproc => 'btint4cmp' },
{ amprocfamily => 'gin/jsonb_path_ops', amproclefttype => 'jsonb',
  amprocrighttype => 'jsonb', amprocnum => '2',
  amproc => 'gin_extract_jsonb_path' },
{ amprocfamily => 'gin/jsonb_path_ops', amproclefttype => 'jsonb',
  amprocrighttype => 'jsonb', amprocnum => '3',
  amproc => 'gin_extract_jsonb_query_path' },
{ amprocfamily => 'gin/jsonb_path_ops', amproclefttype => 'jsonb',
  amprocrighttype => 'jsonb', amprocnum => '4',
  amproc => 'gin_consistent_jsonb_path' },
{ amprocfamily => 'gin/jsonb_path_ops', amproclefttype => 'jsonb',
  amprocrighttype => 'jsonb', amprocnum => '6',
  amproc => 'gin_triconsistent_jsonb_path' },

# sp-gist
{ amprocfamily => 'spgist/range_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '1',
  amproc => 'spg_range_quad_config' },
{ amprocfamily => 'spgist/range_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '2',
  amproc => 'spg_range_quad_choose' },
{ amprocfamily => 'spgist/range_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '3',
  amproc => 'spg_range_quad_picksplit' },
{ amprocfamily => 'spgist/range_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '4',
  amproc => 'spg_range_quad_inner_consistent' },
{ amprocfamily => 'spgist/range_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '5',
  amproc => 'spg_range_quad_leaf_consistent' },
{ amprocfamily => 'spgist/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '1', amproc => 'inet_spg_config' },
{ amprocfamily => 'spgist/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '2', amproc => 'inet_spg_choose' },
{ amprocfamily => 'spgist/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '3', amproc => 'inet_spg_picksplit' },
{ amprocfamily => 'spgist/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '4',
  amproc => 'inet_spg_inner_consistent' },
{ amprocfamily => 'spgist/network_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '5',
  amproc => 'inet_spg_leaf_consistent' },
{ amprocfamily => 'spgist/quad_point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '1', amproc => 'spg_quad_config' },
{ amprocfamily => 'spgist/quad_point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '2', amproc => 'spg_quad_choose' },
{ amprocfamily => 'spgist/quad_point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '3',
  amproc => 'spg_quad_picksplit' },
{ amprocfamily => 'spgist/quad_point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '4',
  amproc => 'spg_quad_inner_consistent' },
{ amprocfamily => 'spgist/quad_point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '5',
  amproc => 'spg_quad_leaf_consistent' },
{ amprocfamily => 'spgist/kd_point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '1', amproc => 'spg_kd_config' },
{ amprocfamily => 'spgist/kd_point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '2', amproc => 'spg_kd_choose' },
{ amprocfamily => 'spgist/kd_point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '3', amproc => 'spg_kd_picksplit' },
{ amprocfamily => 'spgist/kd_point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '4',
  amproc => 'spg_kd_inner_consistent' },
{ amprocfamily => 'spgist/kd_point_ops', amproclefttype => 'point',
  amprocrighttype => 'point', amprocnum => '5',
  amproc => 'spg_quad_leaf_consistent' },
{ amprocfamily => 'spgist/text_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '1', amproc => 'spg_text_config' },
{ amprocfamily => 'spgist/text_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '2', amproc => 'spg_text_choose' },
{ amprocfamily => 'spgist/text_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '3', amproc => 'spg_text_picksplit' },
{ amprocfamily => 'spgist/text_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '4',
  amproc => 'spg_text_inner_consistent' },
{ amprocfamily => 'spgist/text_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '5',
  amproc => 'spg_text_leaf_consistent' },
{ amprocfamily => 'spgist/box_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '1', amproc => 'spg_box_quad_config' },
{ amprocfamily => 'spgist/box_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '2', amproc => 'spg_box_quad_choose' },
{ amprocfamily => 'spgist/box_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '3',
  amproc => 'spg_box_quad_picksplit' },
{ amprocfamily => 'spgist/box_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '4',
  amproc => 'spg_box_quad_inner_consistent' },
{ amprocfamily => 'spgist/box_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '5',
  amproc => 'spg_box_quad_leaf_consistent' },
{ amprocfamily => 'spgist/poly_ops', amproclefttype => 'polygon',
  amprocrighttype => 'polygon', amprocnum => '1',
  amproc => 'spg_bbox_quad_config' },
{ amprocfamily => 'spgist/poly_ops', amproclefttype => 'polygon',
  amprocrighttype => 'polygon', amprocnum => '2',
  amproc => 'spg_box_quad_choose' },
{ amprocfamily => 'spgist/poly_ops', amproclefttype => 'polygon',
  amprocrighttype => 'polygon', amprocnum => '3',
  amproc => 'spg_box_quad_picksplit' },
{ amprocfamily => 'spgist/poly_ops', amproclefttype => 'polygon',
  amprocrighttype => 'polygon', amprocnum => '4',
  amproc => 'spg_box_quad_inner_consistent' },
{ amprocfamily => 'spgist/poly_ops', amproclefttype => 'polygon',
  amprocrighttype => 'polygon', amprocnum => '5',
  amproc => 'spg_box_quad_leaf_consistent' },
{ amprocfamily => 'spgist/poly_ops', amproclefttype => 'polygon',
  amprocrighttype => 'polygon', amprocnum => '6',
  amproc => 'spg_poly_quad_compress' },

# BRIN opclasses

# minmax bytea
{ amprocfamily => 'brin/bytea_minmax_ops', amproclefttype => 'bytea',
  amprocrighttype => 'bytea', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/bytea_minmax_ops', amproclefttype => 'bytea',
  amprocrighttype => 'bytea', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/bytea_minmax_ops', amproclefttype => 'bytea',
  amprocrighttype => 'bytea', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/bytea_minmax_ops', amproclefttype => 'bytea',
  amprocrighttype => 'bytea', amprocnum => '4', amproc => 'brin_minmax_union' },

# minmax "char"
{ amprocfamily => 'brin/char_minmax_ops', amproclefttype => 'char',
  amprocrighttype => 'char', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/char_minmax_ops', amproclefttype => 'char',
  amprocrighttype => 'char', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/char_minmax_ops', amproclefttype => 'char',
  amprocrighttype => 'char', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/char_minmax_ops', amproclefttype => 'char',
  amprocrighttype => 'char', amprocnum => '4', amproc => 'brin_minmax_union' },

# minmax name
{ amprocfamily => 'brin/name_minmax_ops', amproclefttype => 'name',
  amprocrighttype => 'name', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/name_minmax_ops', amproclefttype => 'name',
  amprocrighttype => 'name', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/name_minmax_ops', amproclefttype => 'name',
  amprocrighttype => 'name', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/name_minmax_ops', amproclefttype => 'name',
  amprocrighttype => 'name', amprocnum => '4', amproc => 'brin_minmax_union' },

# minmax integer: int2, int4, int8
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int8',
  amprocrighttype => 'int8', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int8',
  amprocrighttype => 'int8', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int8',
  amprocrighttype => 'int8', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int8',
  amprocrighttype => 'int8', amprocnum => '4', amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int8',
  amprocrighttype => 'int2', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int8',
  amprocrighttype => 'int2', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int8',
  amprocrighttype => 'int2', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int8',
  amprocrighttype => 'int2', amprocnum => '4', amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int8',
  amprocrighttype => 'int4', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int8',
  amprocrighttype => 'int4', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int8',
  amprocrighttype => 'int4', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int8',
  amprocrighttype => 'int4', amprocnum => '4', amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int2',
  amprocrighttype => 'int2', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int2',
  amprocrighttype => 'int2', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int2',
  amprocrighttype => 'int2', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int2',
  amprocrighttype => 'int2', amprocnum => '4', amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int2',
  amprocrighttype => 'int8', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int2',
  amprocrighttype => 'int8', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int2',
  amprocrighttype => 'int8', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int2',
  amprocrighttype => 'int8', amprocnum => '4', amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int2',
  amprocrighttype => 'int4', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int2',
  amprocrighttype => 'int4', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int2',
  amprocrighttype => 'int4', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int2',
  amprocrighttype => 'int4', amprocnum => '4', amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int4',
  amprocrighttype => 'int4', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int4',
  amprocrighttype => 'int4', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int4',
  amprocrighttype => 'int4', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int4',
  amprocrighttype => 'int4', amprocnum => '4', amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int4',
  amprocrighttype => 'int8', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int4',
  amprocrighttype => 'int8', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int4',
  amprocrighttype => 'int8', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int4',
  amprocrighttype => 'int8', amprocnum => '4', amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int4',
  amprocrighttype => 'int2', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int4',
  amprocrighttype => 'int2', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int4',
  amprocrighttype => 'int2', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/integer_minmax_ops', amproclefttype => 'int4',
  amprocrighttype => 'int2', amprocnum => '4', amproc => 'brin_minmax_union' },

# minmax text
{ amprocfamily => 'brin/text_minmax_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/text_minmax_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/text_minmax_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/text_minmax_ops', amproclefttype => 'text',
  amprocrighttype => 'text', amprocnum => '4', amproc => 'brin_minmax_union' },

# minmax oid
{ amprocfamily => 'brin/oid_minmax_ops', amproclefttype => 'oid',
  amprocrighttype => 'oid', amprocnum => '1', amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/oid_minmax_ops', amproclefttype => 'oid',
  amprocrighttype => 'oid', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/oid_minmax_ops', amproclefttype => 'oid',
  amprocrighttype => 'oid', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/oid_minmax_ops', amproclefttype => 'oid',
  amprocrighttype => 'oid', amprocnum => '4', amproc => 'brin_minmax_union' },

# minmax tid
{ amprocfamily => 'brin/tid_minmax_ops', amproclefttype => 'tid',
  amprocrighttype => 'tid', amprocnum => '1', amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/tid_minmax_ops', amproclefttype => 'tid',
  amprocrighttype => 'tid', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/tid_minmax_ops', amproclefttype => 'tid',
  amprocrighttype => 'tid', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/tid_minmax_ops', amproclefttype => 'tid',
  amprocrighttype => 'tid', amprocnum => '4', amproc => 'brin_minmax_union' },

# minmax float
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float4',
  amprocrighttype => 'float4', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float4',
  amprocrighttype => 'float4', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float4',
  amprocrighttype => 'float4', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float4',
  amprocrighttype => 'float4', amprocnum => '4',
  amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float4',
  amprocrighttype => 'float8', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float4',
  amprocrighttype => 'float8', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float4',
  amprocrighttype => 'float8', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float4',
  amprocrighttype => 'float8', amprocnum => '4',
  amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float8',
  amprocrighttype => 'float8', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float8',
  amprocrighttype => 'float8', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float8',
  amprocrighttype => 'float8', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float8',
  amprocrighttype => 'float8', amprocnum => '4',
  amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float8',
  amprocrighttype => 'float4', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float8',
  amprocrighttype => 'float4', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float8',
  amprocrighttype => 'float4', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/float_minmax_ops', amproclefttype => 'float8',
  amprocrighttype => 'float4', amprocnum => '4',
  amproc => 'brin_minmax_union' },

# minmax macaddr
{ amprocfamily => 'brin/macaddr_minmax_ops', amproclefttype => 'macaddr',
  amprocrighttype => 'macaddr', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/macaddr_minmax_ops', amproclefttype => 'macaddr',
  amprocrighttype => 'macaddr', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/macaddr_minmax_ops', amproclefttype => 'macaddr',
  amprocrighttype => 'macaddr', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/macaddr_minmax_ops', amproclefttype => 'macaddr',
  amprocrighttype => 'macaddr', amprocnum => '4',
  amproc => 'brin_minmax_union' },

# minmax macaddr8
{ amprocfamily => 'brin/macaddr8_minmax_ops', amproclefttype => 'macaddr8',
  amprocrighttype => 'macaddr8', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/macaddr8_minmax_ops', amproclefttype => 'macaddr8',
  amprocrighttype => 'macaddr8', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/macaddr8_minmax_ops', amproclefttype => 'macaddr8',
  amprocrighttype => 'macaddr8', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/macaddr8_minmax_ops', amproclefttype => 'macaddr8',
  amprocrighttype => 'macaddr8', amprocnum => '4',
  amproc => 'brin_minmax_union' },

# minmax inet
{ amprocfamily => 'brin/network_minmax_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/network_minmax_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/network_minmax_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/network_minmax_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '4', amproc => 'brin_minmax_union' },

# inclusion inet
{ amprocfamily => 'brin/network_inclusion_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '1',
  amproc => 'brin_inclusion_opcinfo' },
{ amprocfamily => 'brin/network_inclusion_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '2',
  amproc => 'brin_inclusion_add_value' },
{ amprocfamily => 'brin/network_inclusion_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '3',
  amproc => 'brin_inclusion_consistent' },
{ amprocfamily => 'brin/network_inclusion_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '4',
  amproc => 'brin_inclusion_union' },
{ amprocfamily => 'brin/network_inclusion_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '11', amproc => 'inet_merge' },
{ amprocfamily => 'brin/network_inclusion_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '12', amproc => 'inet_same_family' },
{ amprocfamily => 'brin/network_inclusion_ops', amproclefttype => 'inet',
  amprocrighttype => 'inet', amprocnum => '13', amproc => 'network_supeq' },

# minmax character
{ amprocfamily => 'brin/bpchar_minmax_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/bpchar_minmax_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/bpchar_minmax_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/bpchar_minmax_ops', amproclefttype => 'bpchar',
  amprocrighttype => 'bpchar', amprocnum => '4',
  amproc => 'brin_minmax_union' },

# minmax time without time zone
{ amprocfamily => 'brin/time_minmax_ops', amproclefttype => 'time',
  amprocrighttype => 'time', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/time_minmax_ops', amproclefttype => 'time',
  amprocrighttype => 'time', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/time_minmax_ops', amproclefttype => 'time',
  amprocrighttype => 'time', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/time_minmax_ops', amproclefttype => 'time',
  amprocrighttype => 'time', amprocnum => '4', amproc => 'brin_minmax_union' },

# minmax datetime (date, timestamp, timestamptz)
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamp', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamp', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamp', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamp', amprocnum => '4',
  amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamptz', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamptz', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamptz', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'timestamptz', amprocnum => '4',
  amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'date', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'date', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'date', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamp',
  amprocrighttype => 'date', amprocnum => '4', amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamptz', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamptz', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamptz', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamptz', amprocnum => '4',
  amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamp', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamp', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamp', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'timestamp', amprocnum => '4',
  amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'date', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'date', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'date', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'timestamptz',
  amprocrighttype => 'date', amprocnum => '4', amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'date',
  amprocrighttype => 'date', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'date',
  amprocrighttype => 'date', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'date',
  amprocrighttype => 'date', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'date',
  amprocrighttype => 'date', amprocnum => '4', amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'date',
  amprocrighttype => 'timestamp', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'date',
  amprocrighttype => 'timestamp', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'date',
  amprocrighttype => 'timestamp', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'date',
  amprocrighttype => 'timestamp', amprocnum => '4',
  amproc => 'brin_minmax_union' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'date',
  amprocrighttype => 'timestamptz', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'date',
  amprocrighttype => 'timestamptz', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'date',
  amprocrighttype => 'timestamptz', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/datetime_minmax_ops', amproclefttype => 'date',
  amprocrighttype => 'timestamptz', amprocnum => '4',
  amproc => 'brin_minmax_union' },

# minmax interval
{ amprocfamily => 'brin/interval_minmax_ops', amproclefttype => 'interval',
  amprocrighttype => 'interval', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/interval_minmax_ops', amproclefttype => 'interval',
  amprocrighttype => 'interval', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/interval_minmax_ops', amproclefttype => 'interval',
  amprocrighttype => 'interval', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/interval_minmax_ops', amproclefttype => 'interval',
  amprocrighttype => 'interval', amprocnum => '4',
  amproc => 'brin_minmax_union' },

# minmax time with time zone
{ amprocfamily => 'brin/timetz_minmax_ops', amproclefttype => 'timetz',
  amprocrighttype => 'timetz', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/timetz_minmax_ops', amproclefttype => 'timetz',
  amprocrighttype => 'timetz', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/timetz_minmax_ops', amproclefttype => 'timetz',
  amprocrighttype => 'timetz', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/timetz_minmax_ops', amproclefttype => 'timetz',
  amprocrighttype => 'timetz', amprocnum => '4',
  amproc => 'brin_minmax_union' },

# minmax bit
{ amprocfamily => 'brin/bit_minmax_ops', amproclefttype => 'bit',
  amprocrighttype => 'bit', amprocnum => '1', amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/bit_minmax_ops', amproclefttype => 'bit',
  amprocrighttype => 'bit', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/bit_minmax_ops', amproclefttype => 'bit',
  amprocrighttype => 'bit', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/bit_minmax_ops', amproclefttype => 'bit',
  amprocrighttype => 'bit', amprocnum => '4', amproc => 'brin_minmax_union' },

# minmax bit varying
{ amprocfamily => 'brin/varbit_minmax_ops', amproclefttype => 'varbit',
  amprocrighttype => 'varbit', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/varbit_minmax_ops', amproclefttype => 'varbit',
  amprocrighttype => 'varbit', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/varbit_minmax_ops', amproclefttype => 'varbit',
  amprocrighttype => 'varbit', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/varbit_minmax_ops', amproclefttype => 'varbit',
  amprocrighttype => 'varbit', amprocnum => '4',
  amproc => 'brin_minmax_union' },

# minmax numeric
{ amprocfamily => 'brin/numeric_minmax_ops', amproclefttype => 'numeric',
  amprocrighttype => 'numeric', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/numeric_minmax_ops', amproclefttype => 'numeric',
  amprocrighttype => 'numeric', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/numeric_minmax_ops', amproclefttype => 'numeric',
  amprocrighttype => 'numeric', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/numeric_minmax_ops', amproclefttype => 'numeric',
  amprocrighttype => 'numeric', amprocnum => '4',
  amproc => 'brin_minmax_union' },

# minmax uuid
{ amprocfamily => 'brin/uuid_minmax_ops', amproclefttype => 'uuid',
  amprocrighttype => 'uuid', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/uuid_minmax_ops', amproclefttype => 'uuid',
  amprocrighttype => 'uuid', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/uuid_minmax_ops', amproclefttype => 'uuid',
  amprocrighttype => 'uuid', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/uuid_minmax_ops', amproclefttype => 'uuid',
  amprocrighttype => 'uuid', amprocnum => '4', amproc => 'brin_minmax_union' },

# inclusion range types
{ amprocfamily => 'brin/range_inclusion_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '1',
  amproc => 'brin_inclusion_opcinfo' },
{ amprocfamily => 'brin/range_inclusion_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '2',
  amproc => 'brin_inclusion_add_value' },
{ amprocfamily => 'brin/range_inclusion_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '3',
  amproc => 'brin_inclusion_consistent' },
{ amprocfamily => 'brin/range_inclusion_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '4',
  amproc => 'brin_inclusion_union' },
{ amprocfamily => 'brin/range_inclusion_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '11', amproc => 'range_merge' },
{ amprocfamily => 'brin/range_inclusion_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '13',
  amproc => 'range_contains' },
{ amprocfamily => 'brin/range_inclusion_ops', amproclefttype => 'anyrange',
  amprocrighttype => 'anyrange', amprocnum => '14', amproc => 'isempty' },

# minmax pg_lsn
{ amprocfamily => 'brin/pg_lsn_minmax_ops', amproclefttype => 'pg_lsn',
  amprocrighttype => 'pg_lsn', amprocnum => '1',
  amproc => 'brin_minmax_opcinfo' },
{ amprocfamily => 'brin/pg_lsn_minmax_ops', amproclefttype => 'pg_lsn',
  amprocrighttype => 'pg_lsn', amprocnum => '2',
  amproc => 'brin_minmax_add_value' },
{ amprocfamily => 'brin/pg_lsn_minmax_ops', amproclefttype => 'pg_lsn',
  amprocrighttype => 'pg_lsn', amprocnum => '3',
  amproc => 'brin_minmax_consistent' },
{ amprocfamily => 'brin/pg_lsn_minmax_ops', amproclefttype => 'pg_lsn',
  amprocrighttype => 'pg_lsn', amprocnum => '4',
  amproc => 'brin_minmax_union' },

# inclusion box
{ amprocfamily => 'brin/box_inclusion_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '1',
  amproc => 'brin_inclusion_opcinfo' },
{ amprocfamily => 'brin/box_inclusion_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '2',
  amproc => 'brin_inclusion_add_value' },
{ amprocfamily => 'brin/box_inclusion_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '3',
  amproc => 'brin_inclusion_consistent' },
{ amprocfamily => 'brin/box_inclusion_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '4',
  amproc => 'brin_inclusion_union' },
{ amprocfamily => 'brin/box_inclusion_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '11', amproc => 'bound_box' },
{ amprocfamily => 'brin/box_inclusion_ops', amproclefttype => 'box',
  amprocrighttype => 'box', amprocnum => '13', amproc => 'box_contain' },

]