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
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
|
{"information_schema", "_pg_foreign_data_wrappers", "authorization_identifier", "name"},
{"information_schema", "_pg_foreign_data_wrappers", "fdwoptions", "_text"},
{"information_schema", "_pg_foreign_data_wrappers", "fdwowner", "oid"},
{"information_schema", "_pg_foreign_data_wrappers", "foreign_data_wrapper_catalog", "name"},
{"information_schema", "_pg_foreign_data_wrappers", "foreign_data_wrapper_language", "varchar"},
{"information_schema", "_pg_foreign_data_wrappers", "foreign_data_wrapper_name", "name"},
{"information_schema", "_pg_foreign_data_wrappers", "oid", "oid"},
{"information_schema", "_pg_foreign_servers", "authorization_identifier", "name"},
{"information_schema", "_pg_foreign_servers", "foreign_data_wrapper_catalog", "name"},
{"information_schema", "_pg_foreign_servers", "foreign_data_wrapper_name", "name"},
{"information_schema", "_pg_foreign_servers", "foreign_server_catalog", "name"},
{"information_schema", "_pg_foreign_servers", "foreign_server_name", "name"},
{"information_schema", "_pg_foreign_servers", "foreign_server_type", "varchar"},
{"information_schema", "_pg_foreign_servers", "foreign_server_version", "varchar"},
{"information_schema", "_pg_foreign_servers", "oid", "oid"},
{"information_schema", "_pg_foreign_servers", "srvoptions", "_text"},
{"information_schema", "_pg_foreign_table_columns", "attfdwoptions", "_text"},
{"information_schema", "_pg_foreign_table_columns", "attname", "name"},
{"information_schema", "_pg_foreign_table_columns", "nspname", "name"},
{"information_schema", "_pg_foreign_table_columns", "relname", "name"},
{"information_schema", "_pg_foreign_tables", "authorization_identifier", "name"},
{"information_schema", "_pg_foreign_tables", "foreign_server_catalog", "name"},
{"information_schema", "_pg_foreign_tables", "foreign_server_name", "name"},
{"information_schema", "_pg_foreign_tables", "foreign_table_catalog", "name"},
{"information_schema", "_pg_foreign_tables", "foreign_table_name", "name"},
{"information_schema", "_pg_foreign_tables", "foreign_table_schema", "name"},
{"information_schema", "_pg_foreign_tables", "ftoptions", "_text"},
{"information_schema", "_pg_user_mappings", "authorization_identifier", "name"},
{"information_schema", "_pg_user_mappings", "foreign_server_catalog", "name"},
{"information_schema", "_pg_user_mappings", "foreign_server_name", "name"},
{"information_schema", "_pg_user_mappings", "oid", "oid"},
{"information_schema", "_pg_user_mappings", "srvowner", "name"},
{"information_schema", "_pg_user_mappings", "umoptions", "_text"},
{"information_schema", "_pg_user_mappings", "umuser", "oid"},
{"information_schema", "administrable_role_authorizations", "grantee", "name"},
{"information_schema", "administrable_role_authorizations", "is_grantable", "varchar"},
{"information_schema", "administrable_role_authorizations", "role_name", "name"},
{"information_schema", "applicable_roles", "grantee", "name"},
{"information_schema", "applicable_roles", "is_grantable", "varchar"},
{"information_schema", "applicable_roles", "role_name", "name"},
{"information_schema", "attributes", "attribute_default", "varchar"},
{"information_schema", "attributes", "attribute_name", "name"},
{"information_schema", "attributes", "attribute_udt_catalog", "name"},
{"information_schema", "attributes", "attribute_udt_name", "name"},
{"information_schema", "attributes", "attribute_udt_schema", "name"},
{"information_schema", "attributes", "character_maximum_length", "int4"},
{"information_schema", "attributes", "character_octet_length", "int4"},
{"information_schema", "attributes", "character_set_catalog", "name"},
{"information_schema", "attributes", "character_set_name", "name"},
{"information_schema", "attributes", "character_set_schema", "name"},
{"information_schema", "attributes", "collation_catalog", "name"},
{"information_schema", "attributes", "collation_name", "name"},
{"information_schema", "attributes", "collation_schema", "name"},
{"information_schema", "attributes", "data_type", "varchar"},
{"information_schema", "attributes", "datetime_precision", "int4"},
{"information_schema", "attributes", "dtd_identifier", "name"},
{"information_schema", "attributes", "interval_precision", "int4"},
{"information_schema", "attributes", "interval_type", "varchar"},
{"information_schema", "attributes", "is_derived_reference_attribute", "varchar"},
{"information_schema", "attributes", "is_nullable", "varchar"},
{"information_schema", "attributes", "maximum_cardinality", "int4"},
{"information_schema", "attributes", "numeric_precision", "int4"},
{"information_schema", "attributes", "numeric_precision_radix", "int4"},
{"information_schema", "attributes", "numeric_scale", "int4"},
{"information_schema", "attributes", "ordinal_position", "int4"},
{"information_schema", "attributes", "scope_catalog", "name"},
{"information_schema", "attributes", "scope_name", "name"},
{"information_schema", "attributes", "scope_schema", "name"},
{"information_schema", "attributes", "udt_catalog", "name"},
{"information_schema", "attributes", "udt_name", "name"},
{"information_schema", "attributes", "udt_schema", "name"},
{"information_schema", "character_sets", "character_repertoire", "name"},
{"information_schema", "character_sets", "character_set_catalog", "name"},
{"information_schema", "character_sets", "character_set_name", "name"},
{"information_schema", "character_sets", "character_set_schema", "name"},
{"information_schema", "character_sets", "default_collate_catalog", "name"},
{"information_schema", "character_sets", "default_collate_name", "name"},
{"information_schema", "character_sets", "default_collate_schema", "name"},
{"information_schema", "character_sets", "form_of_use", "name"},
{"information_schema", "check_constraint_routine_usage", "constraint_catalog", "name"},
{"information_schema", "check_constraint_routine_usage", "constraint_name", "name"},
{"information_schema", "check_constraint_routine_usage", "constraint_schema", "name"},
{"information_schema", "check_constraint_routine_usage", "specific_catalog", "name"},
{"information_schema", "check_constraint_routine_usage", "specific_name", "name"},
{"information_schema", "check_constraint_routine_usage", "specific_schema", "name"},
{"information_schema", "check_constraints", "check_clause", "varchar"},
{"information_schema", "check_constraints", "constraint_catalog", "name"},
{"information_schema", "check_constraints", "constraint_name", "name"},
{"information_schema", "check_constraints", "constraint_schema", "name"},
{"information_schema", "collation_character_set_applicability", "character_set_catalog", "name"},
{"information_schema", "collation_character_set_applicability", "character_set_name", "name"},
{"information_schema", "collation_character_set_applicability", "character_set_schema", "name"},
{"information_schema", "collation_character_set_applicability", "collation_catalog", "name"},
{"information_schema", "collation_character_set_applicability", "collation_name", "name"},
{"information_schema", "collation_character_set_applicability", "collation_schema", "name"},
{"information_schema", "collations", "collation_catalog", "name"},
{"information_schema", "collations", "collation_name", "name"},
{"information_schema", "collations", "collation_schema", "name"},
{"information_schema", "collations", "pad_attribute", "varchar"},
{"information_schema", "column_column_usage", "column_name", "name"},
{"information_schema", "column_column_usage", "dependent_column", "name"},
{"information_schema", "column_column_usage", "table_catalog", "name"},
{"information_schema", "column_column_usage", "table_name", "name"},
{"information_schema", "column_column_usage", "table_schema", "name"},
{"information_schema", "column_domain_usage", "column_name", "name"},
{"information_schema", "column_domain_usage", "domain_catalog", "name"},
{"information_schema", "column_domain_usage", "domain_name", "name"},
{"information_schema", "column_domain_usage", "domain_schema", "name"},
{"information_schema", "column_domain_usage", "table_catalog", "name"},
{"information_schema", "column_domain_usage", "table_name", "name"},
{"information_schema", "column_domain_usage", "table_schema", "name"},
{"information_schema", "column_options", "column_name", "name"},
{"information_schema", "column_options", "option_name", "name"},
{"information_schema", "column_options", "option_value", "varchar"},
{"information_schema", "column_options", "table_catalog", "name"},
{"information_schema", "column_options", "table_name", "name"},
{"information_schema", "column_options", "table_schema", "name"},
{"information_schema", "column_privileges", "column_name", "name"},
{"information_schema", "column_privileges", "grantee", "name"},
{"information_schema", "column_privileges", "grantor", "name"},
{"information_schema", "column_privileges", "is_grantable", "varchar"},
{"information_schema", "column_privileges", "privilege_type", "varchar"},
{"information_schema", "column_privileges", "table_catalog", "name"},
{"information_schema", "column_privileges", "table_name", "name"},
{"information_schema", "column_privileges", "table_schema", "name"},
{"information_schema", "column_udt_usage", "column_name", "name"},
{"information_schema", "column_udt_usage", "table_catalog", "name"},
{"information_schema", "column_udt_usage", "table_name", "name"},
{"information_schema", "column_udt_usage", "table_schema", "name"},
{"information_schema", "column_udt_usage", "udt_catalog", "name"},
{"information_schema", "column_udt_usage", "udt_name", "name"},
{"information_schema", "column_udt_usage", "udt_schema", "name"},
{"information_schema", "columns", "character_maximum_length", "int4"},
{"information_schema", "columns", "character_octet_length", "int4"},
{"information_schema", "columns", "character_set_catalog", "name"},
{"information_schema", "columns", "character_set_name", "name"},
{"information_schema", "columns", "character_set_schema", "name"},
{"information_schema", "columns", "collation_catalog", "name"},
{"information_schema", "columns", "collation_name", "name"},
{"information_schema", "columns", "collation_schema", "name"},
{"information_schema", "columns", "column_default", "varchar"},
{"information_schema", "columns", "column_name", "name"},
{"information_schema", "columns", "data_type", "varchar"},
{"information_schema", "columns", "datetime_precision", "int4"},
{"information_schema", "columns", "domain_catalog", "name"},
{"information_schema", "columns", "domain_name", "name"},
{"information_schema", "columns", "domain_schema", "name"},
{"information_schema", "columns", "dtd_identifier", "name"},
{"information_schema", "columns", "generation_expression", "varchar"},
{"information_schema", "columns", "identity_cycle", "varchar"},
{"information_schema", "columns", "identity_generation", "varchar"},
{"information_schema", "columns", "identity_increment", "varchar"},
{"information_schema", "columns", "identity_maximum", "varchar"},
{"information_schema", "columns", "identity_minimum", "varchar"},
{"information_schema", "columns", "identity_start", "varchar"},
{"information_schema", "columns", "interval_precision", "int4"},
{"information_schema", "columns", "interval_type", "varchar"},
{"information_schema", "columns", "is_generated", "varchar"},
{"information_schema", "columns", "is_identity", "varchar"},
{"information_schema", "columns", "is_nullable", "varchar"},
{"information_schema", "columns", "is_self_referencing", "varchar"},
{"information_schema", "columns", "is_updatable", "varchar"},
{"information_schema", "columns", "maximum_cardinality", "int4"},
{"information_schema", "columns", "numeric_precision", "int4"},
{"information_schema", "columns", "numeric_precision_radix", "int4"},
{"information_schema", "columns", "numeric_scale", "int4"},
{"information_schema", "columns", "ordinal_position", "int4"},
{"information_schema", "columns", "scope_catalog", "name"},
{"information_schema", "columns", "scope_name", "name"},
{"information_schema", "columns", "scope_schema", "name"},
{"information_schema", "columns", "table_catalog", "name"},
{"information_schema", "columns", "table_name", "name"},
{"information_schema", "columns", "table_schema", "name"},
{"information_schema", "columns", "udt_catalog", "name"},
{"information_schema", "columns", "udt_name", "name"},
{"information_schema", "columns", "udt_schema", "name"},
{"information_schema", "constraint_column_usage", "column_name", "name"},
{"information_schema", "constraint_column_usage", "constraint_catalog", "name"},
{"information_schema", "constraint_column_usage", "constraint_name", "name"},
{"information_schema", "constraint_column_usage", "constraint_schema", "name"},
{"information_schema", "constraint_column_usage", "table_catalog", "name"},
{"information_schema", "constraint_column_usage", "table_name", "name"},
{"information_schema", "constraint_column_usage", "table_schema", "name"},
{"information_schema", "constraint_table_usage", "constraint_catalog", "name"},
{"information_schema", "constraint_table_usage", "constraint_name", "name"},
{"information_schema", "constraint_table_usage", "constraint_schema", "name"},
{"information_schema", "constraint_table_usage", "table_catalog", "name"},
{"information_schema", "constraint_table_usage", "table_name", "name"},
{"information_schema", "constraint_table_usage", "table_schema", "name"},
{"information_schema", "data_type_privileges", "dtd_identifier", "name"},
{"information_schema", "data_type_privileges", "object_catalog", "name"},
{"information_schema", "data_type_privileges", "object_name", "name"},
{"information_schema", "data_type_privileges", "object_schema", "name"},
{"information_schema", "data_type_privileges", "object_type", "varchar"},
{"information_schema", "domain_constraints", "constraint_catalog", "name"},
{"information_schema", "domain_constraints", "constraint_name", "name"},
{"information_schema", "domain_constraints", "constraint_schema", "name"},
{"information_schema", "domain_constraints", "domain_catalog", "name"},
{"information_schema", "domain_constraints", "domain_name", "name"},
{"information_schema", "domain_constraints", "domain_schema", "name"},
{"information_schema", "domain_constraints", "initially_deferred", "varchar"},
{"information_schema", "domain_constraints", "is_deferrable", "varchar"},
{"information_schema", "domain_udt_usage", "domain_catalog", "name"},
{"information_schema", "domain_udt_usage", "domain_name", "name"},
{"information_schema", "domain_udt_usage", "domain_schema", "name"},
{"information_schema", "domain_udt_usage", "udt_catalog", "name"},
{"information_schema", "domain_udt_usage", "udt_name", "name"},
{"information_schema", "domain_udt_usage", "udt_schema", "name"},
{"information_schema", "domains", "character_maximum_length", "int4"},
{"information_schema", "domains", "character_octet_length", "int4"},
{"information_schema", "domains", "character_set_catalog", "name"},
{"information_schema", "domains", "character_set_name", "name"},
{"information_schema", "domains", "character_set_schema", "name"},
{"information_schema", "domains", "collation_catalog", "name"},
{"information_schema", "domains", "collation_name", "name"},
{"information_schema", "domains", "collation_schema", "name"},
{"information_schema", "domains", "data_type", "varchar"},
{"information_schema", "domains", "datetime_precision", "int4"},
{"information_schema", "domains", "domain_catalog", "name"},
{"information_schema", "domains", "domain_default", "varchar"},
{"information_schema", "domains", "domain_name", "name"},
{"information_schema", "domains", "domain_schema", "name"},
{"information_schema", "domains", "dtd_identifier", "name"},
{"information_schema", "domains", "interval_precision", "int4"},
{"information_schema", "domains", "interval_type", "varchar"},
{"information_schema", "domains", "maximum_cardinality", "int4"},
{"information_schema", "domains", "numeric_precision", "int4"},
{"information_schema", "domains", "numeric_precision_radix", "int4"},
{"information_schema", "domains", "numeric_scale", "int4"},
{"information_schema", "domains", "scope_catalog", "name"},
{"information_schema", "domains", "scope_name", "name"},
{"information_schema", "domains", "scope_schema", "name"},
{"information_schema", "domains", "udt_catalog", "name"},
{"information_schema", "domains", "udt_name", "name"},
{"information_schema", "domains", "udt_schema", "name"},
{"information_schema", "element_types", "character_maximum_length", "int4"},
{"information_schema", "element_types", "character_octet_length", "int4"},
{"information_schema", "element_types", "character_set_catalog", "name"},
{"information_schema", "element_types", "character_set_name", "name"},
{"information_schema", "element_types", "character_set_schema", "name"},
{"information_schema", "element_types", "collation_catalog", "name"},
{"information_schema", "element_types", "collation_name", "name"},
{"information_schema", "element_types", "collation_schema", "name"},
{"information_schema", "element_types", "collection_type_identifier", "name"},
{"information_schema", "element_types", "data_type", "varchar"},
{"information_schema", "element_types", "datetime_precision", "int4"},
{"information_schema", "element_types", "domain_default", "varchar"},
{"information_schema", "element_types", "dtd_identifier", "name"},
{"information_schema", "element_types", "interval_precision", "int4"},
{"information_schema", "element_types", "interval_type", "varchar"},
{"information_schema", "element_types", "maximum_cardinality", "int4"},
{"information_schema", "element_types", "numeric_precision", "int4"},
{"information_schema", "element_types", "numeric_precision_radix", "int4"},
{"information_schema", "element_types", "numeric_scale", "int4"},
{"information_schema", "element_types", "object_catalog", "name"},
{"information_schema", "element_types", "object_name", "name"},
{"information_schema", "element_types", "object_schema", "name"},
{"information_schema", "element_types", "object_type", "varchar"},
{"information_schema", "element_types", "scope_catalog", "name"},
{"information_schema", "element_types", "scope_name", "name"},
{"information_schema", "element_types", "scope_schema", "name"},
{"information_schema", "element_types", "udt_catalog", "name"},
{"information_schema", "element_types", "udt_name", "name"},
{"information_schema", "element_types", "udt_schema", "name"},
{"information_schema", "enabled_roles", "role_name", "name"},
{"information_schema", "foreign_data_wrapper_options", "foreign_data_wrapper_catalog", "name"},
{"information_schema", "foreign_data_wrapper_options", "foreign_data_wrapper_name", "name"},
{"information_schema", "foreign_data_wrapper_options", "option_name", "name"},
{"information_schema", "foreign_data_wrapper_options", "option_value", "varchar"},
{"information_schema", "foreign_data_wrappers", "authorization_identifier", "name"},
{"information_schema", "foreign_data_wrappers", "foreign_data_wrapper_catalog", "name"},
{"information_schema", "foreign_data_wrappers", "foreign_data_wrapper_language", "varchar"},
{"information_schema", "foreign_data_wrappers", "foreign_data_wrapper_name", "name"},
{"information_schema", "foreign_data_wrappers", "library_name", "varchar"},
{"information_schema", "foreign_server_options", "foreign_server_catalog", "name"},
{"information_schema", "foreign_server_options", "foreign_server_name", "name"},
{"information_schema", "foreign_server_options", "option_name", "name"},
{"information_schema", "foreign_server_options", "option_value", "varchar"},
{"information_schema", "foreign_servers", "authorization_identifier", "name"},
{"information_schema", "foreign_servers", "foreign_data_wrapper_catalog", "name"},
{"information_schema", "foreign_servers", "foreign_data_wrapper_name", "name"},
{"information_schema", "foreign_servers", "foreign_server_catalog", "name"},
{"information_schema", "foreign_servers", "foreign_server_name", "name"},
{"information_schema", "foreign_servers", "foreign_server_type", "varchar"},
{"information_schema", "foreign_servers", "foreign_server_version", "varchar"},
{"information_schema", "foreign_table_options", "foreign_table_catalog", "name"},
{"information_schema", "foreign_table_options", "foreign_table_name", "name"},
{"information_schema", "foreign_table_options", "foreign_table_schema", "name"},
{"information_schema", "foreign_table_options", "option_name", "name"},
{"information_schema", "foreign_table_options", "option_value", "varchar"},
{"information_schema", "foreign_tables", "foreign_server_catalog", "name"},
{"information_schema", "foreign_tables", "foreign_server_name", "name"},
{"information_schema", "foreign_tables", "foreign_table_catalog", "name"},
{"information_schema", "foreign_tables", "foreign_table_name", "name"},
{"information_schema", "foreign_tables", "foreign_table_schema", "name"},
{"information_schema", "information_schema_catalog_name", "catalog_name", "name"},
{"information_schema", "key_column_usage", "column_name", "name"},
{"information_schema", "key_column_usage", "constraint_catalog", "name"},
{"information_schema", "key_column_usage", "constraint_name", "name"},
{"information_schema", "key_column_usage", "constraint_schema", "name"},
{"information_schema", "key_column_usage", "ordinal_position", "int4"},
{"information_schema", "key_column_usage", "position_in_unique_constraint", "int4"},
{"information_schema", "key_column_usage", "table_catalog", "name"},
{"information_schema", "key_column_usage", "table_name", "name"},
{"information_schema", "key_column_usage", "table_schema", "name"},
{"information_schema", "parameters", "as_locator", "varchar"},
{"information_schema", "parameters", "character_maximum_length", "int4"},
{"information_schema", "parameters", "character_octet_length", "int4"},
{"information_schema", "parameters", "character_set_catalog", "name"},
{"information_schema", "parameters", "character_set_name", "name"},
{"information_schema", "parameters", "character_set_schema", "name"},
{"information_schema", "parameters", "collation_catalog", "name"},
{"information_schema", "parameters", "collation_name", "name"},
{"information_schema", "parameters", "collation_schema", "name"},
{"information_schema", "parameters", "data_type", "varchar"},
{"information_schema", "parameters", "datetime_precision", "int4"},
{"information_schema", "parameters", "dtd_identifier", "name"},
{"information_schema", "parameters", "interval_precision", "int4"},
{"information_schema", "parameters", "interval_type", "varchar"},
{"information_schema", "parameters", "is_result", "varchar"},
{"information_schema", "parameters", "maximum_cardinality", "int4"},
{"information_schema", "parameters", "numeric_precision", "int4"},
{"information_schema", "parameters", "numeric_precision_radix", "int4"},
{"information_schema", "parameters", "numeric_scale", "int4"},
{"information_schema", "parameters", "ordinal_position", "int4"},
{"information_schema", "parameters", "parameter_default", "varchar"},
{"information_schema", "parameters", "parameter_mode", "varchar"},
{"information_schema", "parameters", "parameter_name", "name"},
{"information_schema", "parameters", "scope_catalog", "name"},
{"information_schema", "parameters", "scope_name", "name"},
{"information_schema", "parameters", "scope_schema", "name"},
{"information_schema", "parameters", "specific_catalog", "name"},
{"information_schema", "parameters", "specific_name", "name"},
{"information_schema", "parameters", "specific_schema", "name"},
{"information_schema", "parameters", "udt_catalog", "name"},
{"information_schema", "parameters", "udt_name", "name"},
{"information_schema", "parameters", "udt_schema", "name"},
{"information_schema", "referential_constraints", "constraint_catalog", "name"},
{"information_schema", "referential_constraints", "constraint_name", "name"},
{"information_schema", "referential_constraints", "constraint_schema", "name"},
{"information_schema", "referential_constraints", "delete_rule", "varchar"},
{"information_schema", "referential_constraints", "match_option", "varchar"},
{"information_schema", "referential_constraints", "unique_constraint_catalog", "name"},
{"information_schema", "referential_constraints", "unique_constraint_name", "name"},
{"information_schema", "referential_constraints", "unique_constraint_schema", "name"},
{"information_schema", "referential_constraints", "update_rule", "varchar"},
{"information_schema", "role_column_grants", "column_name", "name"},
{"information_schema", "role_column_grants", "grantee", "name"},
{"information_schema", "role_column_grants", "grantor", "name"},
{"information_schema", "role_column_grants", "is_grantable", "varchar"},
{"information_schema", "role_column_grants", "privilege_type", "varchar"},
{"information_schema", "role_column_grants", "table_catalog", "name"},
{"information_schema", "role_column_grants", "table_name", "name"},
{"information_schema", "role_column_grants", "table_schema", "name"},
{"information_schema", "role_routine_grants", "grantee", "name"},
{"information_schema", "role_routine_grants", "grantor", "name"},
{"information_schema", "role_routine_grants", "is_grantable", "varchar"},
{"information_schema", "role_routine_grants", "privilege_type", "varchar"},
{"information_schema", "role_routine_grants", "routine_catalog", "name"},
{"information_schema", "role_routine_grants", "routine_name", "name"},
{"information_schema", "role_routine_grants", "routine_schema", "name"},
{"information_schema", "role_routine_grants", "specific_catalog", "name"},
{"information_schema", "role_routine_grants", "specific_name", "name"},
{"information_schema", "role_routine_grants", "specific_schema", "name"},
{"information_schema", "role_table_grants", "grantee", "name"},
{"information_schema", "role_table_grants", "grantor", "name"},
{"information_schema", "role_table_grants", "is_grantable", "varchar"},
{"information_schema", "role_table_grants", "privilege_type", "varchar"},
{"information_schema", "role_table_grants", "table_catalog", "name"},
{"information_schema", "role_table_grants", "table_name", "name"},
{"information_schema", "role_table_grants", "table_schema", "name"},
{"information_schema", "role_table_grants", "with_hierarchy", "varchar"},
{"information_schema", "role_udt_grants", "grantee", "name"},
{"information_schema", "role_udt_grants", "grantor", "name"},
{"information_schema", "role_udt_grants", "is_grantable", "varchar"},
{"information_schema", "role_udt_grants", "privilege_type", "varchar"},
{"information_schema", "role_udt_grants", "udt_catalog", "name"},
{"information_schema", "role_udt_grants", "udt_name", "name"},
{"information_schema", "role_udt_grants", "udt_schema", "name"},
{"information_schema", "role_usage_grants", "grantee", "name"},
{"information_schema", "role_usage_grants", "grantor", "name"},
{"information_schema", "role_usage_grants", "is_grantable", "varchar"},
{"information_schema", "role_usage_grants", "object_catalog", "name"},
{"information_schema", "role_usage_grants", "object_name", "name"},
{"information_schema", "role_usage_grants", "object_schema", "name"},
{"information_schema", "role_usage_grants", "object_type", "varchar"},
{"information_schema", "role_usage_grants", "privilege_type", "varchar"},
{"information_schema", "routine_column_usage", "column_name", "name"},
{"information_schema", "routine_column_usage", "routine_catalog", "name"},
{"information_schema", "routine_column_usage", "routine_name", "name"},
{"information_schema", "routine_column_usage", "routine_schema", "name"},
{"information_schema", "routine_column_usage", "specific_catalog", "name"},
{"information_schema", "routine_column_usage", "specific_name", "name"},
{"information_schema", "routine_column_usage", "specific_schema", "name"},
{"information_schema", "routine_column_usage", "table_catalog", "name"},
{"information_schema", "routine_column_usage", "table_name", "name"},
{"information_schema", "routine_column_usage", "table_schema", "name"},
{"information_schema", "routine_privileges", "grantee", "name"},
{"information_schema", "routine_privileges", "grantor", "name"},
{"information_schema", "routine_privileges", "is_grantable", "varchar"},
{"information_schema", "routine_privileges", "privilege_type", "varchar"},
{"information_schema", "routine_privileges", "routine_catalog", "name"},
{"information_schema", "routine_privileges", "routine_name", "name"},
{"information_schema", "routine_privileges", "routine_schema", "name"},
{"information_schema", "routine_privileges", "specific_catalog", "name"},
{"information_schema", "routine_privileges", "specific_name", "name"},
{"information_schema", "routine_privileges", "specific_schema", "name"},
{"information_schema", "routine_routine_usage", "routine_catalog", "name"},
{"information_schema", "routine_routine_usage", "routine_name", "name"},
{"information_schema", "routine_routine_usage", "routine_schema", "name"},
{"information_schema", "routine_routine_usage", "specific_catalog", "name"},
{"information_schema", "routine_routine_usage", "specific_name", "name"},
{"information_schema", "routine_routine_usage", "specific_schema", "name"},
{"information_schema", "routine_sequence_usage", "routine_catalog", "name"},
{"information_schema", "routine_sequence_usage", "routine_name", "name"},
{"information_schema", "routine_sequence_usage", "routine_schema", "name"},
{"information_schema", "routine_sequence_usage", "sequence_catalog", "name"},
{"information_schema", "routine_sequence_usage", "sequence_name", "name"},
{"information_schema", "routine_sequence_usage", "sequence_schema", "name"},
{"information_schema", "routine_sequence_usage", "specific_catalog", "name"},
{"information_schema", "routine_sequence_usage", "specific_name", "name"},
{"information_schema", "routine_sequence_usage", "specific_schema", "name"},
{"information_schema", "routine_table_usage", "routine_catalog", "name"},
{"information_schema", "routine_table_usage", "routine_name", "name"},
{"information_schema", "routine_table_usage", "routine_schema", "name"},
{"information_schema", "routine_table_usage", "specific_catalog", "name"},
{"information_schema", "routine_table_usage", "specific_name", "name"},
{"information_schema", "routine_table_usage", "specific_schema", "name"},
{"information_schema", "routine_table_usage", "table_catalog", "name"},
{"information_schema", "routine_table_usage", "table_name", "name"},
{"information_schema", "routine_table_usage", "table_schema", "name"},
{"information_schema", "routines", "as_locator", "varchar"},
{"information_schema", "routines", "character_maximum_length", "int4"},
{"information_schema", "routines", "character_octet_length", "int4"},
{"information_schema", "routines", "character_set_catalog", "name"},
{"information_schema", "routines", "character_set_name", "name"},
{"information_schema", "routines", "character_set_schema", "name"},
{"information_schema", "routines", "collation_catalog", "name"},
{"information_schema", "routines", "collation_name", "name"},
{"information_schema", "routines", "collation_schema", "name"},
{"information_schema", "routines", "created", "timestamptz"},
{"information_schema", "routines", "data_type", "varchar"},
{"information_schema", "routines", "datetime_precision", "int4"},
{"information_schema", "routines", "dtd_identifier", "name"},
{"information_schema", "routines", "external_language", "varchar"},
{"information_schema", "routines", "external_name", "varchar"},
{"information_schema", "routines", "interval_precision", "int4"},
{"information_schema", "routines", "interval_type", "varchar"},
{"information_schema", "routines", "is_deterministic", "varchar"},
{"information_schema", "routines", "is_implicitly_invocable", "varchar"},
{"information_schema", "routines", "is_null_call", "varchar"},
{"information_schema", "routines", "is_udt_dependent", "varchar"},
{"information_schema", "routines", "is_user_defined_cast", "varchar"},
{"information_schema", "routines", "last_altered", "timestamptz"},
{"information_schema", "routines", "max_dynamic_result_sets", "int4"},
{"information_schema", "routines", "maximum_cardinality", "int4"},
{"information_schema", "routines", "module_catalog", "name"},
{"information_schema", "routines", "module_name", "name"},
{"information_schema", "routines", "module_schema", "name"},
{"information_schema", "routines", "new_savepoint_level", "varchar"},
{"information_schema", "routines", "numeric_precision", "int4"},
{"information_schema", "routines", "numeric_precision_radix", "int4"},
{"information_schema", "routines", "numeric_scale", "int4"},
{"information_schema", "routines", "parameter_style", "varchar"},
{"information_schema", "routines", "result_cast_as_locator", "varchar"},
{"information_schema", "routines", "result_cast_char_max_length", "int4"},
{"information_schema", "routines", "result_cast_char_octet_length", "int4"},
{"information_schema", "routines", "result_cast_char_set_catalog", "name"},
{"information_schema", "routines", "result_cast_char_set_name", "name"},
{"information_schema", "routines", "result_cast_char_set_schema", "name"},
{"information_schema", "routines", "result_cast_collation_catalog", "name"},
{"information_schema", "routines", "result_cast_collation_name", "name"},
{"information_schema", "routines", "result_cast_collation_schema", "name"},
{"information_schema", "routines", "result_cast_datetime_precision", "int4"},
{"information_schema", "routines", "result_cast_dtd_identifier", "name"},
{"information_schema", "routines", "result_cast_from_data_type", "varchar"},
{"information_schema", "routines", "result_cast_interval_precision", "int4"},
{"information_schema", "routines", "result_cast_interval_type", "varchar"},
{"information_schema", "routines", "result_cast_maximum_cardinality", "int4"},
{"information_schema", "routines", "result_cast_numeric_precision", "int4"},
{"information_schema", "routines", "result_cast_numeric_precision_radix", "int4"},
{"information_schema", "routines", "result_cast_numeric_scale", "int4"},
{"information_schema", "routines", "result_cast_scope_catalog", "name"},
{"information_schema", "routines", "result_cast_scope_name", "name"},
{"information_schema", "routines", "result_cast_scope_schema", "name"},
{"information_schema", "routines", "result_cast_type_udt_catalog", "name"},
{"information_schema", "routines", "result_cast_type_udt_name", "name"},
{"information_schema", "routines", "result_cast_type_udt_schema", "name"},
{"information_schema", "routines", "routine_body", "varchar"},
{"information_schema", "routines", "routine_catalog", "name"},
{"information_schema", "routines", "routine_definition", "varchar"},
{"information_schema", "routines", "routine_name", "name"},
{"information_schema", "routines", "routine_schema", "name"},
{"information_schema", "routines", "routine_type", "varchar"},
{"information_schema", "routines", "schema_level_routine", "varchar"},
{"information_schema", "routines", "scope_catalog", "name"},
{"information_schema", "routines", "scope_name", "name"},
{"information_schema", "routines", "scope_schema", "name"},
{"information_schema", "routines", "security_type", "varchar"},
{"information_schema", "routines", "specific_catalog", "name"},
{"information_schema", "routines", "specific_name", "name"},
{"information_schema", "routines", "specific_schema", "name"},
{"information_schema", "routines", "sql_data_access", "varchar"},
{"information_schema", "routines", "sql_path", "varchar"},
{"information_schema", "routines", "to_sql_specific_catalog", "name"},
{"information_schema", "routines", "to_sql_specific_name", "name"},
{"information_schema", "routines", "to_sql_specific_schema", "name"},
{"information_schema", "routines", "type_udt_catalog", "name"},
{"information_schema", "routines", "type_udt_name", "name"},
{"information_schema", "routines", "type_udt_schema", "name"},
{"information_schema", "routines", "udt_catalog", "name"},
{"information_schema", "routines", "udt_name", "name"},
{"information_schema", "routines", "udt_schema", "name"},
{"information_schema", "schemata", "catalog_name", "name"},
{"information_schema", "schemata", "default_character_set_catalog", "name"},
{"information_schema", "schemata", "default_character_set_name", "name"},
{"information_schema", "schemata", "default_character_set_schema", "name"},
{"information_schema", "schemata", "schema_name", "name"},
{"information_schema", "schemata", "schema_owner", "name"},
{"information_schema", "schemata", "sql_path", "varchar"},
{"information_schema", "sequences", "cycle_option", "varchar"},
{"information_schema", "sequences", "data_type", "varchar"},
{"information_schema", "sequences", "increment", "varchar"},
{"information_schema", "sequences", "maximum_value", "varchar"},
{"information_schema", "sequences", "minimum_value", "varchar"},
{"information_schema", "sequences", "numeric_precision", "int4"},
{"information_schema", "sequences", "numeric_precision_radix", "int4"},
{"information_schema", "sequences", "numeric_scale", "int4"},
{"information_schema", "sequences", "sequence_catalog", "name"},
{"information_schema", "sequences", "sequence_name", "name"},
{"information_schema", "sequences", "sequence_schema", "name"},
{"information_schema", "sequences", "start_value", "varchar"},
{"information_schema", "sql_features", "comments", "varchar"},
{"information_schema", "sql_features", "feature_id", "varchar"},
{"information_schema", "sql_features", "feature_name", "varchar"},
{"information_schema", "sql_features", "is_supported", "varchar"},
{"information_schema", "sql_features", "is_verified_by", "varchar"},
{"information_schema", "sql_features", "sub_feature_id", "varchar"},
{"information_schema", "sql_features", "sub_feature_name", "varchar"},
{"information_schema", "sql_implementation_info", "character_value", "varchar"},
{"information_schema", "sql_implementation_info", "comments", "varchar"},
{"information_schema", "sql_implementation_info", "implementation_info_id", "varchar"},
{"information_schema", "sql_implementation_info", "implementation_info_name", "varchar"},
{"information_schema", "sql_implementation_info", "integer_value", "int4"},
{"information_schema", "sql_parts", "comments", "varchar"},
{"information_schema", "sql_parts", "feature_id", "varchar"},
{"information_schema", "sql_parts", "feature_name", "varchar"},
{"information_schema", "sql_parts", "is_supported", "varchar"},
{"information_schema", "sql_parts", "is_verified_by", "varchar"},
{"information_schema", "sql_sizing", "comments", "varchar"},
{"information_schema", "sql_sizing", "sizing_id", "int4"},
{"information_schema", "sql_sizing", "sizing_name", "varchar"},
{"information_schema", "sql_sizing", "supported_value", "int4"},
{"information_schema", "table_constraints", "constraint_catalog", "name"},
{"information_schema", "table_constraints", "constraint_name", "name"},
{"information_schema", "table_constraints", "constraint_schema", "name"},
{"information_schema", "table_constraints", "constraint_type", "varchar"},
{"information_schema", "table_constraints", "enforced", "varchar"},
{"information_schema", "table_constraints", "initially_deferred", "varchar"},
{"information_schema", "table_constraints", "is_deferrable", "varchar"},
{"information_schema", "table_constraints", "nulls_distinct", "varchar"},
{"information_schema", "table_constraints", "table_catalog", "name"},
{"information_schema", "table_constraints", "table_name", "name"},
{"information_schema", "table_constraints", "table_schema", "name"},
{"information_schema", "table_privileges", "grantee", "name"},
{"information_schema", "table_privileges", "grantor", "name"},
{"information_schema", "table_privileges", "is_grantable", "varchar"},
{"information_schema", "table_privileges", "privilege_type", "varchar"},
{"information_schema", "table_privileges", "table_catalog", "name"},
{"information_schema", "table_privileges", "table_name", "name"},
{"information_schema", "table_privileges", "table_schema", "name"},
{"information_schema", "table_privileges", "with_hierarchy", "varchar"},
{"information_schema", "tables", "commit_action", "varchar"},
{"information_schema", "tables", "is_insertable_into", "varchar"},
{"information_schema", "tables", "is_typed", "varchar"},
{"information_schema", "tables", "reference_generation", "varchar"},
{"information_schema", "tables", "self_referencing_column_name", "name"},
{"information_schema", "tables", "table_catalog", "name"},
{"information_schema", "tables", "table_name", "name"},
{"information_schema", "tables", "table_schema", "name"},
{"information_schema", "tables", "table_type", "varchar"},
{"information_schema", "tables", "user_defined_type_catalog", "name"},
{"information_schema", "tables", "user_defined_type_name", "name"},
{"information_schema", "tables", "user_defined_type_schema", "name"},
{"information_schema", "transforms", "group_name", "name"},
{"information_schema", "transforms", "specific_catalog", "name"},
{"information_schema", "transforms", "specific_name", "name"},
{"information_schema", "transforms", "specific_schema", "name"},
{"information_schema", "transforms", "transform_type", "varchar"},
{"information_schema", "transforms", "udt_catalog", "name"},
{"information_schema", "transforms", "udt_name", "name"},
{"information_schema", "transforms", "udt_schema", "name"},
{"information_schema", "triggered_update_columns", "event_object_catalog", "name"},
{"information_schema", "triggered_update_columns", "event_object_column", "name"},
{"information_schema", "triggered_update_columns", "event_object_schema", "name"},
{"information_schema", "triggered_update_columns", "event_object_table", "name"},
{"information_schema", "triggered_update_columns", "trigger_catalog", "name"},
{"information_schema", "triggered_update_columns", "trigger_name", "name"},
{"information_schema", "triggered_update_columns", "trigger_schema", "name"},
{"information_schema", "triggers", "action_condition", "varchar"},
{"information_schema", "triggers", "action_order", "int4"},
{"information_schema", "triggers", "action_orientation", "varchar"},
{"information_schema", "triggers", "action_reference_new_row", "name"},
{"information_schema", "triggers", "action_reference_new_table", "name"},
{"information_schema", "triggers", "action_reference_old_row", "name"},
{"information_schema", "triggers", "action_reference_old_table", "name"},
{"information_schema", "triggers", "action_statement", "varchar"},
{"information_schema", "triggers", "action_timing", "varchar"},
{"information_schema", "triggers", "created", "timestamptz"},
{"information_schema", "triggers", "event_manipulation", "varchar"},
{"information_schema", "triggers", "event_object_catalog", "name"},
{"information_schema", "triggers", "event_object_schema", "name"},
{"information_schema", "triggers", "event_object_table", "name"},
{"information_schema", "triggers", "trigger_catalog", "name"},
{"information_schema", "triggers", "trigger_name", "name"},
{"information_schema", "triggers", "trigger_schema", "name"},
{"information_schema", "udt_privileges", "grantee", "name"},
{"information_schema", "udt_privileges", "grantor", "name"},
{"information_schema", "udt_privileges", "is_grantable", "varchar"},
{"information_schema", "udt_privileges", "privilege_type", "varchar"},
{"information_schema", "udt_privileges", "udt_catalog", "name"},
{"information_schema", "udt_privileges", "udt_name", "name"},
{"information_schema", "udt_privileges", "udt_schema", "name"},
{"information_schema", "usage_privileges", "grantee", "name"},
{"information_schema", "usage_privileges", "grantor", "name"},
{"information_schema", "usage_privileges", "is_grantable", "varchar"},
{"information_schema", "usage_privileges", "object_catalog", "name"},
{"information_schema", "usage_privileges", "object_name", "name"},
{"information_schema", "usage_privileges", "object_schema", "name"},
{"information_schema", "usage_privileges", "object_type", "varchar"},
{"information_schema", "usage_privileges", "privilege_type", "varchar"},
{"information_schema", "user_defined_types", "character_maximum_length", "int4"},
{"information_schema", "user_defined_types", "character_octet_length", "int4"},
{"information_schema", "user_defined_types", "character_set_catalog", "name"},
{"information_schema", "user_defined_types", "character_set_name", "name"},
{"information_schema", "user_defined_types", "character_set_schema", "name"},
{"information_schema", "user_defined_types", "collation_catalog", "name"},
{"information_schema", "user_defined_types", "collation_name", "name"},
{"information_schema", "user_defined_types", "collation_schema", "name"},
{"information_schema", "user_defined_types", "data_type", "varchar"},
{"information_schema", "user_defined_types", "datetime_precision", "int4"},
{"information_schema", "user_defined_types", "interval_precision", "int4"},
{"information_schema", "user_defined_types", "interval_type", "varchar"},
{"information_schema", "user_defined_types", "is_final", "varchar"},
{"information_schema", "user_defined_types", "is_instantiable", "varchar"},
{"information_schema", "user_defined_types", "numeric_precision", "int4"},
{"information_schema", "user_defined_types", "numeric_precision_radix", "int4"},
{"information_schema", "user_defined_types", "numeric_scale", "int4"},
{"information_schema", "user_defined_types", "ordering_category", "varchar"},
{"information_schema", "user_defined_types", "ordering_form", "varchar"},
{"information_schema", "user_defined_types", "ordering_routine_catalog", "name"},
{"information_schema", "user_defined_types", "ordering_routine_name", "name"},
{"information_schema", "user_defined_types", "ordering_routine_schema", "name"},
{"information_schema", "user_defined_types", "ref_dtd_identifier", "name"},
{"information_schema", "user_defined_types", "reference_type", "varchar"},
{"information_schema", "user_defined_types", "source_dtd_identifier", "name"},
{"information_schema", "user_defined_types", "user_defined_type_catalog", "name"},
{"information_schema", "user_defined_types", "user_defined_type_category", "varchar"},
{"information_schema", "user_defined_types", "user_defined_type_name", "name"},
{"information_schema", "user_defined_types", "user_defined_type_schema", "name"},
{"information_schema", "user_mapping_options", "authorization_identifier", "name"},
{"information_schema", "user_mapping_options", "foreign_server_catalog", "name"},
{"information_schema", "user_mapping_options", "foreign_server_name", "name"},
{"information_schema", "user_mapping_options", "option_name", "name"},
{"information_schema", "user_mapping_options", "option_value", "varchar"},
{"information_schema", "user_mappings", "authorization_identifier", "name"},
{"information_schema", "user_mappings", "foreign_server_catalog", "name"},
{"information_schema", "user_mappings", "foreign_server_name", "name"},
{"information_schema", "view_column_usage", "column_name", "name"},
{"information_schema", "view_column_usage", "table_catalog", "name"},
{"information_schema", "view_column_usage", "table_name", "name"},
{"information_schema", "view_column_usage", "table_schema", "name"},
{"information_schema", "view_column_usage", "view_catalog", "name"},
{"information_schema", "view_column_usage", "view_name", "name"},
{"information_schema", "view_column_usage", "view_schema", "name"},
{"information_schema", "view_routine_usage", "specific_catalog", "name"},
{"information_schema", "view_routine_usage", "specific_name", "name"},
{"information_schema", "view_routine_usage", "specific_schema", "name"},
{"information_schema", "view_routine_usage", "table_catalog", "name"},
{"information_schema", "view_routine_usage", "table_name", "name"},
{"information_schema", "view_routine_usage", "table_schema", "name"},
{"information_schema", "view_table_usage", "table_catalog", "name"},
{"information_schema", "view_table_usage", "table_name", "name"},
{"information_schema", "view_table_usage", "table_schema", "name"},
{"information_schema", "view_table_usage", "view_catalog", "name"},
{"information_schema", "view_table_usage", "view_name", "name"},
{"information_schema", "view_table_usage", "view_schema", "name"},
{"information_schema", "views", "check_option", "varchar"},
{"information_schema", "views", "is_insertable_into", "varchar"},
{"information_schema", "views", "is_trigger_deletable", "varchar"},
{"information_schema", "views", "is_trigger_insertable_into", "varchar"},
{"information_schema", "views", "is_trigger_updatable", "varchar"},
{"information_schema", "views", "is_updatable", "varchar"},
{"information_schema", "views", "table_catalog", "name"},
{"information_schema", "views", "table_name", "name"},
{"information_schema", "views", "table_schema", "name"},
{"information_schema", "views", "view_definition", "varchar"},
{"pg_catalog", "pg_aggregate", "aggcombinefn", "regproc"},
{"pg_catalog", "pg_aggregate", "aggdeserialfn", "regproc"},
{"pg_catalog", "pg_aggregate", "aggfinalextra", "bool"},
{"pg_catalog", "pg_aggregate", "aggfinalfn", "regproc"},
{"pg_catalog", "pg_aggregate", "aggfinalmodify", "char"},
{"pg_catalog", "pg_aggregate", "aggfnoid", "regproc"},
{"pg_catalog", "pg_aggregate", "agginitval", "text"},
{"pg_catalog", "pg_aggregate", "aggkind", "char"},
{"pg_catalog", "pg_aggregate", "aggmfinalextra", "bool"},
{"pg_catalog", "pg_aggregate", "aggmfinalfn", "regproc"},
{"pg_catalog", "pg_aggregate", "aggmfinalmodify", "char"},
{"pg_catalog", "pg_aggregate", "aggminitval", "text"},
{"pg_catalog", "pg_aggregate", "aggminvtransfn", "regproc"},
{"pg_catalog", "pg_aggregate", "aggmtransfn", "regproc"},
{"pg_catalog", "pg_aggregate", "aggmtransspace", "int4"},
{"pg_catalog", "pg_aggregate", "aggmtranstype", "oid"},
{"pg_catalog", "pg_aggregate", "aggnumdirectargs", "int2"},
{"pg_catalog", "pg_aggregate", "aggserialfn", "regproc"},
{"pg_catalog", "pg_aggregate", "aggsortop", "oid"},
{"pg_catalog", "pg_aggregate", "aggtransfn", "regproc"},
{"pg_catalog", "pg_aggregate", "aggtransspace", "int4"},
{"pg_catalog", "pg_aggregate", "aggtranstype", "oid"},
{"pg_catalog", "pg_am", "amhandler", "regproc"},
{"pg_catalog", "pg_am", "amname", "name"},
{"pg_catalog", "pg_am", "amtype", "char"},
{"pg_catalog", "pg_am", "oid", "oid"},
{"pg_catalog", "pg_amop", "amopfamily", "oid"},
{"pg_catalog", "pg_amop", "amoplefttype", "oid"},
{"pg_catalog", "pg_amop", "amopmethod", "oid"},
{"pg_catalog", "pg_amop", "amopopr", "oid"},
{"pg_catalog", "pg_amop", "amoppurpose", "char"},
{"pg_catalog", "pg_amop", "amoprighttype", "oid"},
{"pg_catalog", "pg_amop", "amopsortfamily", "oid"},
{"pg_catalog", "pg_amop", "amopstrategy", "int2"},
{"pg_catalog", "pg_amop", "oid", "oid"},
{"pg_catalog", "pg_amproc", "amproc", "regproc"},
{"pg_catalog", "pg_amproc", "amprocfamily", "oid"},
{"pg_catalog", "pg_amproc", "amproclefttype", "oid"},
{"pg_catalog", "pg_amproc", "amprocnum", "int2"},
{"pg_catalog", "pg_amproc", "amprocrighttype", "oid"},
{"pg_catalog", "pg_amproc", "oid", "oid"},
{"pg_catalog", "pg_attrdef", "adbin", "pg_node_tree"},
{"pg_catalog", "pg_attrdef", "adnum", "int2"},
{"pg_catalog", "pg_attrdef", "adrelid", "oid"},
{"pg_catalog", "pg_attrdef", "oid", "oid"},
{"pg_catalog", "pg_attribute", "attacl", "_aclitem"},
{"pg_catalog", "pg_attribute", "attalign", "char"},
{"pg_catalog", "pg_attribute", "attbyval", "bool"},
{"pg_catalog", "pg_attribute", "attcacheoff", "int4"},
{"pg_catalog", "pg_attribute", "attcollation", "oid"},
{"pg_catalog", "pg_attribute", "attcompression", "char"},
{"pg_catalog", "pg_attribute", "attfdwoptions", "_text"},
{"pg_catalog", "pg_attribute", "attgenerated", "char"},
{"pg_catalog", "pg_attribute", "atthasdef", "bool"},
{"pg_catalog", "pg_attribute", "atthasmissing", "bool"},
{"pg_catalog", "pg_attribute", "attidentity", "char"},
{"pg_catalog", "pg_attribute", "attinhcount", "int2"},
{"pg_catalog", "pg_attribute", "attisdropped", "bool"},
{"pg_catalog", "pg_attribute", "attislocal", "bool"},
{"pg_catalog", "pg_attribute", "attlen", "int2"},
{"pg_catalog", "pg_attribute", "attmissingval", "anyarray"},
{"pg_catalog", "pg_attribute", "attname", "name"},
{"pg_catalog", "pg_attribute", "attndims", "int2"},
{"pg_catalog", "pg_attribute", "attnotnull", "bool"},
{"pg_catalog", "pg_attribute", "attnum", "int2"},
{"pg_catalog", "pg_attribute", "attoptions", "_text"},
{"pg_catalog", "pg_attribute", "attrelid", "oid"},
{"pg_catalog", "pg_attribute", "attstattarget", "int2"},
{"pg_catalog", "pg_attribute", "attstorage", "char"},
{"pg_catalog", "pg_attribute", "atttypid", "oid"},
{"pg_catalog", "pg_attribute", "atttypmod", "int4"},
{"pg_catalog", "pg_auth_members", "admin_option", "bool"},
{"pg_catalog", "pg_auth_members", "grantor", "oid"},
{"pg_catalog", "pg_auth_members", "inherit_option", "bool"},
{"pg_catalog", "pg_auth_members", "member", "oid"},
{"pg_catalog", "pg_auth_members", "oid", "oid"},
{"pg_catalog", "pg_auth_members", "roleid", "oid"},
{"pg_catalog", "pg_auth_members", "set_option", "bool"},
{"pg_catalog", "pg_authid", "oid", "oid"},
{"pg_catalog", "pg_authid", "rolbypassrls", "bool"},
{"pg_catalog", "pg_authid", "rolcanlogin", "bool"},
{"pg_catalog", "pg_authid", "rolconnlimit", "int4"},
{"pg_catalog", "pg_authid", "rolcreatedb", "bool"},
{"pg_catalog", "pg_authid", "rolcreaterole", "bool"},
{"pg_catalog", "pg_authid", "rolinherit", "bool"},
{"pg_catalog", "pg_authid", "rolname", "name"},
{"pg_catalog", "pg_authid", "rolpassword", "text"},
{"pg_catalog", "pg_authid", "rolreplication", "bool"},
{"pg_catalog", "pg_authid", "rolsuper", "bool"},
{"pg_catalog", "pg_authid", "rolvaliduntil", "timestamptz"},
{"pg_catalog", "pg_available_extension_versions", "comment", "text"},
{"pg_catalog", "pg_available_extension_versions", "installed", "bool"},
{"pg_catalog", "pg_available_extension_versions", "name", "name"},
{"pg_catalog", "pg_available_extension_versions", "relocatable", "bool"},
{"pg_catalog", "pg_available_extension_versions", "requires", "_name"},
{"pg_catalog", "pg_available_extension_versions", "schema", "name"},
{"pg_catalog", "pg_available_extension_versions", "superuser", "bool"},
{"pg_catalog", "pg_available_extension_versions", "trusted", "bool"},
{"pg_catalog", "pg_available_extension_versions", "version", "text"},
{"pg_catalog", "pg_available_extensions", "comment", "text"},
{"pg_catalog", "pg_available_extensions", "default_version", "text"},
{"pg_catalog", "pg_available_extensions", "installed_version", "text"},
{"pg_catalog", "pg_available_extensions", "name", "name"},
{"pg_catalog", "pg_backend_memory_contexts", "free_bytes", "int8"},
{"pg_catalog", "pg_backend_memory_contexts", "free_chunks", "int8"},
{"pg_catalog", "pg_backend_memory_contexts", "ident", "text"},
{"pg_catalog", "pg_backend_memory_contexts", "level", "int4"},
{"pg_catalog", "pg_backend_memory_contexts", "name", "text"},
{"pg_catalog", "pg_backend_memory_contexts", "parent", "text"},
{"pg_catalog", "pg_backend_memory_contexts", "total_bytes", "int8"},
{"pg_catalog", "pg_backend_memory_contexts", "total_nblocks", "int8"},
{"pg_catalog", "pg_backend_memory_contexts", "used_bytes", "int8"},
{"pg_catalog", "pg_cast", "castcontext", "char"},
{"pg_catalog", "pg_cast", "castfunc", "oid"},
{"pg_catalog", "pg_cast", "castmethod", "char"},
{"pg_catalog", "pg_cast", "castsource", "oid"},
{"pg_catalog", "pg_cast", "casttarget", "oid"},
{"pg_catalog", "pg_cast", "oid", "oid"},
{"pg_catalog", "pg_class", "oid", "oid"},
{"pg_catalog", "pg_class", "relacl", "_aclitem"},
{"pg_catalog", "pg_class", "relallvisible", "int4"},
{"pg_catalog", "pg_class", "relam", "oid"},
{"pg_catalog", "pg_class", "relchecks", "int2"},
{"pg_catalog", "pg_class", "relfilenode", "oid"},
{"pg_catalog", "pg_class", "relforcerowsecurity", "bool"},
{"pg_catalog", "pg_class", "relfrozenxid", "xid"},
{"pg_catalog", "pg_class", "relhasindex", "bool"},
{"pg_catalog", "pg_class", "relhasrules", "bool"},
{"pg_catalog", "pg_class", "relhassubclass", "bool"},
{"pg_catalog", "pg_class", "relhastriggers", "bool"},
{"pg_catalog", "pg_class", "relispartition", "bool"},
{"pg_catalog", "pg_class", "relispopulated", "bool"},
{"pg_catalog", "pg_class", "relisshared", "bool"},
{"pg_catalog", "pg_class", "relkind", "char"},
{"pg_catalog", "pg_class", "relminmxid", "xid"},
{"pg_catalog", "pg_class", "relname", "name"},
{"pg_catalog", "pg_class", "relnamespace", "oid"},
{"pg_catalog", "pg_class", "relnatts", "int2"},
{"pg_catalog", "pg_class", "reloftype", "oid"},
{"pg_catalog", "pg_class", "reloptions", "_text"},
{"pg_catalog", "pg_class", "relowner", "oid"},
{"pg_catalog", "pg_class", "relpages", "int4"},
{"pg_catalog", "pg_class", "relpartbound", "pg_node_tree"},
{"pg_catalog", "pg_class", "relpersistence", "char"},
{"pg_catalog", "pg_class", "relreplident", "char"},
{"pg_catalog", "pg_class", "relrewrite", "oid"},
{"pg_catalog", "pg_class", "relrowsecurity", "bool"},
{"pg_catalog", "pg_class", "reltablespace", "oid"},
{"pg_catalog", "pg_class", "reltoastrelid", "oid"},
{"pg_catalog", "pg_class", "reltuples", "float4"},
{"pg_catalog", "pg_class", "reltype", "oid"},
{"pg_catalog", "pg_collation", "collcollate", "text"},
{"pg_catalog", "pg_collation", "collctype", "text"},
{"pg_catalog", "pg_collation", "collencoding", "int4"},
{"pg_catalog", "pg_collation", "colliculocale", "text"},
{"pg_catalog", "pg_collation", "collicurules", "text"},
{"pg_catalog", "pg_collation", "collisdeterministic", "bool"},
{"pg_catalog", "pg_collation", "collname", "name"},
{"pg_catalog", "pg_collation", "collnamespace", "oid"},
{"pg_catalog", "pg_collation", "collowner", "oid"},
{"pg_catalog", "pg_collation", "collprovider", "char"},
{"pg_catalog", "pg_collation", "collversion", "text"},
{"pg_catalog", "pg_collation", "oid", "oid"},
{"pg_catalog", "pg_config", "name", "text"},
{"pg_catalog", "pg_config", "setting", "text"},
{"pg_catalog", "pg_constraint", "conbin", "pg_node_tree"},
{"pg_catalog", "pg_constraint", "condeferrable", "bool"},
{"pg_catalog", "pg_constraint", "condeferred", "bool"},
{"pg_catalog", "pg_constraint", "conexclop", "_oid"},
{"pg_catalog", "pg_constraint", "confdelsetcols", "_int2"},
{"pg_catalog", "pg_constraint", "confdeltype", "char"},
{"pg_catalog", "pg_constraint", "conffeqop", "_oid"},
{"pg_catalog", "pg_constraint", "confkey", "_int2"},
{"pg_catalog", "pg_constraint", "confmatchtype", "char"},
{"pg_catalog", "pg_constraint", "confrelid", "oid"},
{"pg_catalog", "pg_constraint", "confupdtype", "char"},
{"pg_catalog", "pg_constraint", "conindid", "oid"},
{"pg_catalog", "pg_constraint", "coninhcount", "int2"},
{"pg_catalog", "pg_constraint", "conislocal", "bool"},
{"pg_catalog", "pg_constraint", "conkey", "_int2"},
{"pg_catalog", "pg_constraint", "conname", "name"},
{"pg_catalog", "pg_constraint", "connamespace", "oid"},
{"pg_catalog", "pg_constraint", "connoinherit", "bool"},
{"pg_catalog", "pg_constraint", "conparentid", "oid"},
{"pg_catalog", "pg_constraint", "conpfeqop", "_oid"},
{"pg_catalog", "pg_constraint", "conppeqop", "_oid"},
{"pg_catalog", "pg_constraint", "conrelid", "oid"},
{"pg_catalog", "pg_constraint", "contype", "char"},
{"pg_catalog", "pg_constraint", "contypid", "oid"},
{"pg_catalog", "pg_constraint", "convalidated", "bool"},
{"pg_catalog", "pg_constraint", "oid", "oid"},
{"pg_catalog", "pg_conversion", "condefault", "bool"},
{"pg_catalog", "pg_conversion", "conforencoding", "int4"},
{"pg_catalog", "pg_conversion", "conname", "name"},
{"pg_catalog", "pg_conversion", "connamespace", "oid"},
{"pg_catalog", "pg_conversion", "conowner", "oid"},
{"pg_catalog", "pg_conversion", "conproc", "regproc"},
{"pg_catalog", "pg_conversion", "contoencoding", "int4"},
{"pg_catalog", "pg_conversion", "oid", "oid"},
{"pg_catalog", "pg_cursors", "creation_time", "timestamptz"},
{"pg_catalog", "pg_cursors", "is_binary", "bool"},
{"pg_catalog", "pg_cursors", "is_holdable", "bool"},
{"pg_catalog", "pg_cursors", "is_scrollable", "bool"},
{"pg_catalog", "pg_cursors", "name", "text"},
{"pg_catalog", "pg_cursors", "statement", "text"},
{"pg_catalog", "pg_database", "datacl", "_aclitem"},
{"pg_catalog", "pg_database", "datallowconn", "bool"},
{"pg_catalog", "pg_database", "datcollate", "text"},
{"pg_catalog", "pg_database", "datcollversion", "text"},
{"pg_catalog", "pg_database", "datconnlimit", "int4"},
{"pg_catalog", "pg_database", "datctype", "text"},
{"pg_catalog", "pg_database", "datdba", "oid"},
{"pg_catalog", "pg_database", "datfrozenxid", "xid"},
{"pg_catalog", "pg_database", "daticulocale", "text"},
{"pg_catalog", "pg_database", "daticurules", "text"},
{"pg_catalog", "pg_database", "datistemplate", "bool"},
{"pg_catalog", "pg_database", "datlocprovider", "char"},
{"pg_catalog", "pg_database", "datminmxid", "xid"},
{"pg_catalog", "pg_database", "datname", "name"},
{"pg_catalog", "pg_database", "dattablespace", "oid"},
{"pg_catalog", "pg_database", "encoding", "int4"},
{"pg_catalog", "pg_database", "oid", "oid"},
{"pg_catalog", "pg_db_role_setting", "setconfig", "_text"},
{"pg_catalog", "pg_db_role_setting", "setdatabase", "oid"},
{"pg_catalog", "pg_db_role_setting", "setrole", "oid"},
{"pg_catalog", "pg_default_acl", "defaclacl", "_aclitem"},
{"pg_catalog", "pg_default_acl", "defaclnamespace", "oid"},
{"pg_catalog", "pg_default_acl", "defaclobjtype", "char"},
{"pg_catalog", "pg_default_acl", "defaclrole", "oid"},
{"pg_catalog", "pg_default_acl", "oid", "oid"},
{"pg_catalog", "pg_depend", "classid", "oid"},
{"pg_catalog", "pg_depend", "deptype", "char"},
{"pg_catalog", "pg_depend", "objid", "oid"},
{"pg_catalog", "pg_depend", "objsubid", "int4"},
{"pg_catalog", "pg_depend", "refclassid", "oid"},
{"pg_catalog", "pg_depend", "refobjid", "oid"},
{"pg_catalog", "pg_depend", "refobjsubid", "int4"},
{"pg_catalog", "pg_description", "classoid", "oid"},
{"pg_catalog", "pg_description", "description", "text"},
{"pg_catalog", "pg_description", "objoid", "oid"},
{"pg_catalog", "pg_description", "objsubid", "int4"},
{"pg_catalog", "pg_enum", "enumlabel", "name"},
{"pg_catalog", "pg_enum", "enumsortorder", "float4"},
{"pg_catalog", "pg_enum", "enumtypid", "oid"},
{"pg_catalog", "pg_enum", "oid", "oid"},
{"pg_catalog", "pg_event_trigger", "evtenabled", "char"},
{"pg_catalog", "pg_event_trigger", "evtevent", "name"},
{"pg_catalog", "pg_event_trigger", "evtfoid", "oid"},
{"pg_catalog", "pg_event_trigger", "evtname", "name"},
{"pg_catalog", "pg_event_trigger", "evtowner", "oid"},
{"pg_catalog", "pg_event_trigger", "evttags", "_text"},
{"pg_catalog", "pg_event_trigger", "oid", "oid"},
{"pg_catalog", "pg_extension", "extcondition", "_text"},
{"pg_catalog", "pg_extension", "extconfig", "_oid"},
{"pg_catalog", "pg_extension", "extname", "name"},
{"pg_catalog", "pg_extension", "extnamespace", "oid"},
{"pg_catalog", "pg_extension", "extowner", "oid"},
{"pg_catalog", "pg_extension", "extrelocatable", "bool"},
{"pg_catalog", "pg_extension", "extversion", "text"},
{"pg_catalog", "pg_extension", "oid", "oid"},
{"pg_catalog", "pg_file_settings", "applied", "bool"},
{"pg_catalog", "pg_file_settings", "error", "text"},
{"pg_catalog", "pg_file_settings", "name", "text"},
{"pg_catalog", "pg_file_settings", "seqno", "int4"},
{"pg_catalog", "pg_file_settings", "setting", "text"},
{"pg_catalog", "pg_file_settings", "sourcefile", "text"},
{"pg_catalog", "pg_file_settings", "sourceline", "int4"},
{"pg_catalog", "pg_foreign_data_wrapper", "fdwacl", "_aclitem"},
{"pg_catalog", "pg_foreign_data_wrapper", "fdwhandler", "oid"},
{"pg_catalog", "pg_foreign_data_wrapper", "fdwname", "name"},
{"pg_catalog", "pg_foreign_data_wrapper", "fdwoptions", "_text"},
{"pg_catalog", "pg_foreign_data_wrapper", "fdwowner", "oid"},
{"pg_catalog", "pg_foreign_data_wrapper", "fdwvalidator", "oid"},
{"pg_catalog", "pg_foreign_data_wrapper", "oid", "oid"},
{"pg_catalog", "pg_foreign_server", "oid", "oid"},
{"pg_catalog", "pg_foreign_server", "srvacl", "_aclitem"},
{"pg_catalog", "pg_foreign_server", "srvfdw", "oid"},
{"pg_catalog", "pg_foreign_server", "srvname", "name"},
{"pg_catalog", "pg_foreign_server", "srvoptions", "_text"},
{"pg_catalog", "pg_foreign_server", "srvowner", "oid"},
{"pg_catalog", "pg_foreign_server", "srvtype", "text"},
{"pg_catalog", "pg_foreign_server", "srvversion", "text"},
{"pg_catalog", "pg_foreign_table", "ftoptions", "_text"},
{"pg_catalog", "pg_foreign_table", "ftrelid", "oid"},
{"pg_catalog", "pg_foreign_table", "ftserver", "oid"},
{"pg_catalog", "pg_group", "grolist", "_oid"},
{"pg_catalog", "pg_group", "groname", "name"},
{"pg_catalog", "pg_group", "grosysid", "oid"},
{"pg_catalog", "pg_hba_file_rules", "address", "text"},
{"pg_catalog", "pg_hba_file_rules", "auth_method", "text"},
{"pg_catalog", "pg_hba_file_rules", "database", "_text"},
{"pg_catalog", "pg_hba_file_rules", "error", "text"},
{"pg_catalog", "pg_hba_file_rules", "file_name", "text"},
{"pg_catalog", "pg_hba_file_rules", "line_number", "int4"},
{"pg_catalog", "pg_hba_file_rules", "netmask", "text"},
{"pg_catalog", "pg_hba_file_rules", "options", "_text"},
{"pg_catalog", "pg_hba_file_rules", "rule_number", "int4"},
{"pg_catalog", "pg_hba_file_rules", "type", "text"},
{"pg_catalog", "pg_hba_file_rules", "user_name", "_text"},
{"pg_catalog", "pg_ident_file_mappings", "error", "text"},
{"pg_catalog", "pg_ident_file_mappings", "file_name", "text"},
{"pg_catalog", "pg_ident_file_mappings", "line_number", "int4"},
{"pg_catalog", "pg_ident_file_mappings", "map_name", "text"},
{"pg_catalog", "pg_ident_file_mappings", "map_number", "int4"},
{"pg_catalog", "pg_ident_file_mappings", "pg_username", "text"},
{"pg_catalog", "pg_ident_file_mappings", "sys_name", "text"},
{"pg_catalog", "pg_index", "indcheckxmin", "bool"},
{"pg_catalog", "pg_index", "indclass", "oidvector"},
{"pg_catalog", "pg_index", "indcollation", "oidvector"},
{"pg_catalog", "pg_index", "indexprs", "pg_node_tree"},
{"pg_catalog", "pg_index", "indexrelid", "oid"},
{"pg_catalog", "pg_index", "indimmediate", "bool"},
{"pg_catalog", "pg_index", "indisclustered", "bool"},
{"pg_catalog", "pg_index", "indisexclusion", "bool"},
{"pg_catalog", "pg_index", "indislive", "bool"},
{"pg_catalog", "pg_index", "indisprimary", "bool"},
{"pg_catalog", "pg_index", "indisready", "bool"},
{"pg_catalog", "pg_index", "indisreplident", "bool"},
{"pg_catalog", "pg_index", "indisunique", "bool"},
{"pg_catalog", "pg_index", "indisvalid", "bool"},
{"pg_catalog", "pg_index", "indkey", "int2vector"},
{"pg_catalog", "pg_index", "indnatts", "int2"},
{"pg_catalog", "pg_index", "indnkeyatts", "int2"},
{"pg_catalog", "pg_index", "indnullsnotdistinct", "bool"},
{"pg_catalog", "pg_index", "indoption", "int2vector"},
{"pg_catalog", "pg_index", "indpred", "pg_node_tree"},
{"pg_catalog", "pg_index", "indrelid", "oid"},
{"pg_catalog", "pg_indexes", "indexdef", "text"},
{"pg_catalog", "pg_indexes", "indexname", "name"},
{"pg_catalog", "pg_indexes", "schemaname", "name"},
{"pg_catalog", "pg_indexes", "tablename", "name"},
{"pg_catalog", "pg_indexes", "tablespace", "name"},
{"pg_catalog", "pg_inherits", "inhdetachpending", "bool"},
{"pg_catalog", "pg_inherits", "inhparent", "oid"},
{"pg_catalog", "pg_inherits", "inhrelid", "oid"},
{"pg_catalog", "pg_inherits", "inhseqno", "int4"},
{"pg_catalog", "pg_init_privs", "classoid", "oid"},
{"pg_catalog", "pg_init_privs", "initprivs", "_aclitem"},
{"pg_catalog", "pg_init_privs", "objoid", "oid"},
{"pg_catalog", "pg_init_privs", "objsubid", "int4"},
{"pg_catalog", "pg_init_privs", "privtype", "char"},
{"pg_catalog", "pg_language", "lanacl", "_aclitem"},
{"pg_catalog", "pg_language", "laninline", "oid"},
{"pg_catalog", "pg_language", "lanispl", "bool"},
{"pg_catalog", "pg_language", "lanname", "name"},
{"pg_catalog", "pg_language", "lanowner", "oid"},
{"pg_catalog", "pg_language", "lanplcallfoid", "oid"},
{"pg_catalog", "pg_language", "lanpltrusted", "bool"},
{"pg_catalog", "pg_language", "lanvalidator", "oid"},
{"pg_catalog", "pg_language", "oid", "oid"},
{"pg_catalog", "pg_largeobject", "data", "bytea"},
{"pg_catalog", "pg_largeobject", "loid", "oid"},
{"pg_catalog", "pg_largeobject", "pageno", "int4"},
{"pg_catalog", "pg_largeobject_metadata", "lomacl", "_aclitem"},
{"pg_catalog", "pg_largeobject_metadata", "lomowner", "oid"},
{"pg_catalog", "pg_largeobject_metadata", "oid", "oid"},
{"pg_catalog", "pg_locks", "classid", "oid"},
{"pg_catalog", "pg_locks", "database", "oid"},
{"pg_catalog", "pg_locks", "fastpath", "bool"},
{"pg_catalog", "pg_locks", "granted", "bool"},
{"pg_catalog", "pg_locks", "locktype", "text"},
{"pg_catalog", "pg_locks", "mode", "text"},
{"pg_catalog", "pg_locks", "objid", "oid"},
{"pg_catalog", "pg_locks", "objsubid", "int2"},
{"pg_catalog", "pg_locks", "page", "int4"},
{"pg_catalog", "pg_locks", "pid", "int4"},
{"pg_catalog", "pg_locks", "relation", "oid"},
{"pg_catalog", "pg_locks", "transactionid", "xid"},
{"pg_catalog", "pg_locks", "tuple", "int2"},
{"pg_catalog", "pg_locks", "virtualtransaction", "text"},
{"pg_catalog", "pg_locks", "virtualxid", "text"},
{"pg_catalog", "pg_locks", "waitstart", "timestamptz"},
{"pg_catalog", "pg_matviews", "definition", "text"},
{"pg_catalog", "pg_matviews", "hasindexes", "bool"},
{"pg_catalog", "pg_matviews", "ispopulated", "bool"},
{"pg_catalog", "pg_matviews", "matviewname", "name"},
{"pg_catalog", "pg_matviews", "matviewowner", "name"},
{"pg_catalog", "pg_matviews", "schemaname", "name"},
{"pg_catalog", "pg_matviews", "tablespace", "name"},
{"pg_catalog", "pg_namespace", "nspacl", "_aclitem"},
{"pg_catalog", "pg_namespace", "nspname", "name"},
{"pg_catalog", "pg_namespace", "nspowner", "oid"},
{"pg_catalog", "pg_namespace", "oid", "oid"},
{"pg_catalog", "pg_opclass", "oid", "oid"},
{"pg_catalog", "pg_opclass", "opcdefault", "bool"},
{"pg_catalog", "pg_opclass", "opcfamily", "oid"},
{"pg_catalog", "pg_opclass", "opcintype", "oid"},
{"pg_catalog", "pg_opclass", "opckeytype", "oid"},
{"pg_catalog", "pg_opclass", "opcmethod", "oid"},
{"pg_catalog", "pg_opclass", "opcname", "name"},
{"pg_catalog", "pg_opclass", "opcnamespace", "oid"},
{"pg_catalog", "pg_opclass", "opcowner", "oid"},
{"pg_catalog", "pg_operator", "oid", "oid"},
{"pg_catalog", "pg_operator", "oprcanhash", "bool"},
{"pg_catalog", "pg_operator", "oprcanmerge", "bool"},
{"pg_catalog", "pg_operator", "oprcode", "regproc"},
{"pg_catalog", "pg_operator", "oprcom", "oid"},
{"pg_catalog", "pg_operator", "oprjoin", "regproc"},
{"pg_catalog", "pg_operator", "oprkind", "char"},
{"pg_catalog", "pg_operator", "oprleft", "oid"},
{"pg_catalog", "pg_operator", "oprname", "name"},
{"pg_catalog", "pg_operator", "oprnamespace", "oid"},
{"pg_catalog", "pg_operator", "oprnegate", "oid"},
{"pg_catalog", "pg_operator", "oprowner", "oid"},
{"pg_catalog", "pg_operator", "oprrest", "regproc"},
{"pg_catalog", "pg_operator", "oprresult", "oid"},
{"pg_catalog", "pg_operator", "oprright", "oid"},
{"pg_catalog", "pg_opfamily", "oid", "oid"},
{"pg_catalog", "pg_opfamily", "opfmethod", "oid"},
{"pg_catalog", "pg_opfamily", "opfname", "name"},
{"pg_catalog", "pg_opfamily", "opfnamespace", "oid"},
{"pg_catalog", "pg_opfamily", "opfowner", "oid"},
{"pg_catalog", "pg_parameter_acl", "oid", "oid"},
{"pg_catalog", "pg_parameter_acl", "paracl", "_aclitem"},
{"pg_catalog", "pg_parameter_acl", "parname", "text"},
{"pg_catalog", "pg_partitioned_table", "partattrs", "int2vector"},
{"pg_catalog", "pg_partitioned_table", "partclass", "oidvector"},
{"pg_catalog", "pg_partitioned_table", "partcollation", "oidvector"},
{"pg_catalog", "pg_partitioned_table", "partdefid", "oid"},
{"pg_catalog", "pg_partitioned_table", "partexprs", "pg_node_tree"},
{"pg_catalog", "pg_partitioned_table", "partnatts", "int2"},
{"pg_catalog", "pg_partitioned_table", "partrelid", "oid"},
{"pg_catalog", "pg_partitioned_table", "partstrat", "char"},
{"pg_catalog", "pg_policies", "cmd", "text"},
{"pg_catalog", "pg_policies", "permissive", "text"},
{"pg_catalog", "pg_policies", "policyname", "name"},
{"pg_catalog", "pg_policies", "qual", "text"},
{"pg_catalog", "pg_policies", "roles", "_name"},
{"pg_catalog", "pg_policies", "schemaname", "name"},
{"pg_catalog", "pg_policies", "tablename", "name"},
{"pg_catalog", "pg_policies", "with_check", "text"},
{"pg_catalog", "pg_policy", "oid", "oid"},
{"pg_catalog", "pg_policy", "polcmd", "char"},
{"pg_catalog", "pg_policy", "polname", "name"},
{"pg_catalog", "pg_policy", "polpermissive", "bool"},
{"pg_catalog", "pg_policy", "polqual", "pg_node_tree"},
{"pg_catalog", "pg_policy", "polrelid", "oid"},
{"pg_catalog", "pg_policy", "polroles", "_oid"},
{"pg_catalog", "pg_policy", "polwithcheck", "pg_node_tree"},
{"pg_catalog", "pg_prepared_statements", "custom_plans", "int8"},
{"pg_catalog", "pg_prepared_statements", "from_sql", "bool"},
{"pg_catalog", "pg_prepared_statements", "generic_plans", "int8"},
{"pg_catalog", "pg_prepared_statements", "name", "text"},
{"pg_catalog", "pg_prepared_statements", "parameter_types", "_regtype"},
{"pg_catalog", "pg_prepared_statements", "prepare_time", "timestamptz"},
{"pg_catalog", "pg_prepared_statements", "result_types", "_regtype"},
{"pg_catalog", "pg_prepared_statements", "statement", "text"},
{"pg_catalog", "pg_prepared_xacts", "database", "name"},
{"pg_catalog", "pg_prepared_xacts", "gid", "text"},
{"pg_catalog", "pg_prepared_xacts", "owner", "name"},
{"pg_catalog", "pg_prepared_xacts", "prepared", "timestamptz"},
{"pg_catalog", "pg_prepared_xacts", "transaction", "xid"},
{"pg_catalog", "pg_proc", "oid", "oid"},
{"pg_catalog", "pg_proc", "proacl", "_aclitem"},
{"pg_catalog", "pg_proc", "proallargtypes", "_oid"},
{"pg_catalog", "pg_proc", "proargdefaults", "pg_node_tree"},
{"pg_catalog", "pg_proc", "proargmodes", "_char"},
{"pg_catalog", "pg_proc", "proargnames", "_text"},
{"pg_catalog", "pg_proc", "proargtypes", "oidvector"},
{"pg_catalog", "pg_proc", "probin", "text"},
{"pg_catalog", "pg_proc", "proconfig", "_text"},
{"pg_catalog", "pg_proc", "procost", "float4"},
{"pg_catalog", "pg_proc", "proisstrict", "bool"},
{"pg_catalog", "pg_proc", "prokind", "char"},
{"pg_catalog", "pg_proc", "prolang", "oid"},
{"pg_catalog", "pg_proc", "proleakproof", "bool"},
{"pg_catalog", "pg_proc", "proname", "name"},
{"pg_catalog", "pg_proc", "pronamespace", "oid"},
{"pg_catalog", "pg_proc", "pronargdefaults", "int2"},
{"pg_catalog", "pg_proc", "pronargs", "int2"},
{"pg_catalog", "pg_proc", "proowner", "oid"},
{"pg_catalog", "pg_proc", "proparallel", "char"},
{"pg_catalog", "pg_proc", "proretset", "bool"},
{"pg_catalog", "pg_proc", "prorettype", "oid"},
{"pg_catalog", "pg_proc", "prorows", "float4"},
{"pg_catalog", "pg_proc", "prosecdef", "bool"},
{"pg_catalog", "pg_proc", "prosqlbody", "pg_node_tree"},
{"pg_catalog", "pg_proc", "prosrc", "text"},
{"pg_catalog", "pg_proc", "prosupport", "regproc"},
{"pg_catalog", "pg_proc", "protrftypes", "_oid"},
{"pg_catalog", "pg_proc", "provariadic", "oid"},
{"pg_catalog", "pg_proc", "provolatile", "char"},
{"pg_catalog", "pg_publication", "oid", "oid"},
{"pg_catalog", "pg_publication", "puballtables", "bool"},
{"pg_catalog", "pg_publication", "pubdelete", "bool"},
{"pg_catalog", "pg_publication", "pubinsert", "bool"},
{"pg_catalog", "pg_publication", "pubname", "name"},
{"pg_catalog", "pg_publication", "pubowner", "oid"},
{"pg_catalog", "pg_publication", "pubtruncate", "bool"},
{"pg_catalog", "pg_publication", "pubupdate", "bool"},
{"pg_catalog", "pg_publication", "pubviaroot", "bool"},
{"pg_catalog", "pg_publication_namespace", "oid", "oid"},
{"pg_catalog", "pg_publication_namespace", "pnnspid", "oid"},
{"pg_catalog", "pg_publication_namespace", "pnpubid", "oid"},
{"pg_catalog", "pg_publication_rel", "oid", "oid"},
{"pg_catalog", "pg_publication_rel", "prattrs", "int2vector"},
{"pg_catalog", "pg_publication_rel", "prpubid", "oid"},
{"pg_catalog", "pg_publication_rel", "prqual", "pg_node_tree"},
{"pg_catalog", "pg_publication_rel", "prrelid", "oid"},
{"pg_catalog", "pg_publication_tables", "attnames", "_name"},
{"pg_catalog", "pg_publication_tables", "pubname", "name"},
{"pg_catalog", "pg_publication_tables", "rowfilter", "text"},
{"pg_catalog", "pg_publication_tables", "schemaname", "name"},
{"pg_catalog", "pg_publication_tables", "tablename", "name"},
{"pg_catalog", "pg_range", "rngcanonical", "regproc"},
{"pg_catalog", "pg_range", "rngcollation", "oid"},
{"pg_catalog", "pg_range", "rngmultitypid", "oid"},
{"pg_catalog", "pg_range", "rngsubdiff", "regproc"},
{"pg_catalog", "pg_range", "rngsubopc", "oid"},
{"pg_catalog", "pg_range", "rngsubtype", "oid"},
{"pg_catalog", "pg_range", "rngtypid", "oid"},
{"pg_catalog", "pg_replication_origin", "roident", "oid"},
{"pg_catalog", "pg_replication_origin", "roname", "text"},
{"pg_catalog", "pg_replication_origin_status", "external_id", "text"},
{"pg_catalog", "pg_replication_origin_status", "local_id", "oid"},
{"pg_catalog", "pg_replication_origin_status", "local_lsn", "pg_lsn"},
{"pg_catalog", "pg_replication_origin_status", "remote_lsn", "pg_lsn"},
{"pg_catalog", "pg_replication_slots", "active", "bool"},
{"pg_catalog", "pg_replication_slots", "active_pid", "int4"},
{"pg_catalog", "pg_replication_slots", "catalog_xmin", "xid"},
{"pg_catalog", "pg_replication_slots", "confirmed_flush_lsn", "pg_lsn"},
{"pg_catalog", "pg_replication_slots", "conflicting", "bool"},
{"pg_catalog", "pg_replication_slots", "database", "name"},
{"pg_catalog", "pg_replication_slots", "datoid", "oid"},
{"pg_catalog", "pg_replication_slots", "plugin", "name"},
{"pg_catalog", "pg_replication_slots", "restart_lsn", "pg_lsn"},
{"pg_catalog", "pg_replication_slots", "safe_wal_size", "int8"},
{"pg_catalog", "pg_replication_slots", "slot_name", "name"},
{"pg_catalog", "pg_replication_slots", "slot_type", "text"},
{"pg_catalog", "pg_replication_slots", "temporary", "bool"},
{"pg_catalog", "pg_replication_slots", "two_phase", "bool"},
{"pg_catalog", "pg_replication_slots", "wal_status", "text"},
{"pg_catalog", "pg_replication_slots", "xmin", "xid"},
{"pg_catalog", "pg_rewrite", "ev_action", "pg_node_tree"},
{"pg_catalog", "pg_rewrite", "ev_class", "oid"},
{"pg_catalog", "pg_rewrite", "ev_enabled", "char"},
{"pg_catalog", "pg_rewrite", "ev_qual", "pg_node_tree"},
{"pg_catalog", "pg_rewrite", "ev_type", "char"},
{"pg_catalog", "pg_rewrite", "is_instead", "bool"},
{"pg_catalog", "pg_rewrite", "oid", "oid"},
{"pg_catalog", "pg_rewrite", "rulename", "name"},
{"pg_catalog", "pg_roles", "oid", "oid"},
{"pg_catalog", "pg_roles", "rolbypassrls", "bool"},
{"pg_catalog", "pg_roles", "rolcanlogin", "bool"},
{"pg_catalog", "pg_roles", "rolconfig", "_text"},
{"pg_catalog", "pg_roles", "rolconnlimit", "int4"},
{"pg_catalog", "pg_roles", "rolcreatedb", "bool"},
{"pg_catalog", "pg_roles", "rolcreaterole", "bool"},
{"pg_catalog", "pg_roles", "rolinherit", "bool"},
{"pg_catalog", "pg_roles", "rolname", "name"},
{"pg_catalog", "pg_roles", "rolpassword", "text"},
{"pg_catalog", "pg_roles", "rolreplication", "bool"},
{"pg_catalog", "pg_roles", "rolsuper", "bool"},
{"pg_catalog", "pg_roles", "rolvaliduntil", "timestamptz"},
{"pg_catalog", "pg_rules", "definition", "text"},
{"pg_catalog", "pg_rules", "rulename", "name"},
{"pg_catalog", "pg_rules", "schemaname", "name"},
{"pg_catalog", "pg_rules", "tablename", "name"},
{"pg_catalog", "pg_seclabel", "classoid", "oid"},
{"pg_catalog", "pg_seclabel", "label", "text"},
{"pg_catalog", "pg_seclabel", "objoid", "oid"},
{"pg_catalog", "pg_seclabel", "objsubid", "int4"},
{"pg_catalog", "pg_seclabel", "provider", "text"},
{"pg_catalog", "pg_seclabels", "classoid", "oid"},
{"pg_catalog", "pg_seclabels", "label", "text"},
{"pg_catalog", "pg_seclabels", "objname", "text"},
{"pg_catalog", "pg_seclabels", "objnamespace", "oid"},
{"pg_catalog", "pg_seclabels", "objoid", "oid"},
{"pg_catalog", "pg_seclabels", "objsubid", "int4"},
{"pg_catalog", "pg_seclabels", "objtype", "text"},
{"pg_catalog", "pg_seclabels", "provider", "text"},
{"pg_catalog", "pg_sequence", "seqcache", "int8"},
{"pg_catalog", "pg_sequence", "seqcycle", "bool"},
{"pg_catalog", "pg_sequence", "seqincrement", "int8"},
{"pg_catalog", "pg_sequence", "seqmax", "int8"},
{"pg_catalog", "pg_sequence", "seqmin", "int8"},
{"pg_catalog", "pg_sequence", "seqrelid", "oid"},
{"pg_catalog", "pg_sequence", "seqstart", "int8"},
{"pg_catalog", "pg_sequence", "seqtypid", "oid"},
{"pg_catalog", "pg_sequences", "cache_size", "int8"},
{"pg_catalog", "pg_sequences", "cycle", "bool"},
{"pg_catalog", "pg_sequences", "data_type", "regtype"},
{"pg_catalog", "pg_sequences", "increment_by", "int8"},
{"pg_catalog", "pg_sequences", "last_value", "int8"},
{"pg_catalog", "pg_sequences", "max_value", "int8"},
{"pg_catalog", "pg_sequences", "min_value", "int8"},
{"pg_catalog", "pg_sequences", "schemaname", "name"},
{"pg_catalog", "pg_sequences", "sequencename", "name"},
{"pg_catalog", "pg_sequences", "sequenceowner", "name"},
{"pg_catalog", "pg_sequences", "start_value", "int8"},
{"pg_catalog", "pg_settings", "boot_val", "text"},
{"pg_catalog", "pg_settings", "category", "text"},
{"pg_catalog", "pg_settings", "context", "text"},
{"pg_catalog", "pg_settings", "enumvals", "_text"},
{"pg_catalog", "pg_settings", "extra_desc", "text"},
{"pg_catalog", "pg_settings", "max_val", "text"},
{"pg_catalog", "pg_settings", "min_val", "text"},
{"pg_catalog", "pg_settings", "name", "text"},
{"pg_catalog", "pg_settings", "pending_restart", "bool"},
{"pg_catalog", "pg_settings", "reset_val", "text"},
{"pg_catalog", "pg_settings", "setting", "text"},
{"pg_catalog", "pg_settings", "short_desc", "text"},
{"pg_catalog", "pg_settings", "source", "text"},
{"pg_catalog", "pg_settings", "sourcefile", "text"},
{"pg_catalog", "pg_settings", "sourceline", "int4"},
{"pg_catalog", "pg_settings", "unit", "text"},
{"pg_catalog", "pg_settings", "vartype", "text"},
{"pg_catalog", "pg_shadow", "passwd", "text"},
{"pg_catalog", "pg_shadow", "usebypassrls", "bool"},
{"pg_catalog", "pg_shadow", "useconfig", "_text"},
{"pg_catalog", "pg_shadow", "usecreatedb", "bool"},
{"pg_catalog", "pg_shadow", "usename", "name"},
{"pg_catalog", "pg_shadow", "userepl", "bool"},
{"pg_catalog", "pg_shadow", "usesuper", "bool"},
{"pg_catalog", "pg_shadow", "usesysid", "oid"},
{"pg_catalog", "pg_shadow", "valuntil", "timestamptz"},
{"pg_catalog", "pg_shdepend", "classid", "oid"},
{"pg_catalog", "pg_shdepend", "dbid", "oid"},
{"pg_catalog", "pg_shdepend", "deptype", "char"},
{"pg_catalog", "pg_shdepend", "objid", "oid"},
{"pg_catalog", "pg_shdepend", "objsubid", "int4"},
{"pg_catalog", "pg_shdepend", "refclassid", "oid"},
{"pg_catalog", "pg_shdepend", "refobjid", "oid"},
{"pg_catalog", "pg_shdescription", "classoid", "oid"},
{"pg_catalog", "pg_shdescription", "description", "text"},
{"pg_catalog", "pg_shdescription", "objoid", "oid"},
{"pg_catalog", "pg_shmem_allocations", "allocated_size", "int8"},
{"pg_catalog", "pg_shmem_allocations", "name", "text"},
{"pg_catalog", "pg_shmem_allocations", "off", "int8"},
{"pg_catalog", "pg_shmem_allocations", "size", "int8"},
{"pg_catalog", "pg_shseclabel", "classoid", "oid"},
{"pg_catalog", "pg_shseclabel", "label", "text"},
{"pg_catalog", "pg_shseclabel", "objoid", "oid"},
{"pg_catalog", "pg_shseclabel", "provider", "text"},
{"pg_catalog", "pg_stat_activity", "application_name", "text"},
{"pg_catalog", "pg_stat_activity", "backend_start", "timestamptz"},
{"pg_catalog", "pg_stat_activity", "backend_type", "text"},
{"pg_catalog", "pg_stat_activity", "backend_xid", "xid"},
{"pg_catalog", "pg_stat_activity", "backend_xmin", "xid"},
{"pg_catalog", "pg_stat_activity", "client_addr", "inet"},
{"pg_catalog", "pg_stat_activity", "client_hostname", "text"},
{"pg_catalog", "pg_stat_activity", "client_port", "int4"},
{"pg_catalog", "pg_stat_activity", "datid", "oid"},
{"pg_catalog", "pg_stat_activity", "datname", "name"},
{"pg_catalog", "pg_stat_activity", "leader_pid", "int4"},
{"pg_catalog", "pg_stat_activity", "pid", "int4"},
{"pg_catalog", "pg_stat_activity", "query", "text"},
{"pg_catalog", "pg_stat_activity", "query_id", "int8"},
{"pg_catalog", "pg_stat_activity", "query_start", "timestamptz"},
{"pg_catalog", "pg_stat_activity", "state", "text"},
{"pg_catalog", "pg_stat_activity", "state_change", "timestamptz"},
{"pg_catalog", "pg_stat_activity", "usename", "name"},
{"pg_catalog", "pg_stat_activity", "usesysid", "oid"},
{"pg_catalog", "pg_stat_activity", "wait_event", "text"},
{"pg_catalog", "pg_stat_activity", "wait_event_type", "text"},
{"pg_catalog", "pg_stat_activity", "xact_start", "timestamptz"},
{"pg_catalog", "pg_stat_all_indexes", "idx_scan", "int8"},
{"pg_catalog", "pg_stat_all_indexes", "idx_tup_fetch", "int8"},
{"pg_catalog", "pg_stat_all_indexes", "idx_tup_read", "int8"},
{"pg_catalog", "pg_stat_all_indexes", "indexrelid", "oid"},
{"pg_catalog", "pg_stat_all_indexes", "indexrelname", "name"},
{"pg_catalog", "pg_stat_all_indexes", "last_idx_scan", "timestamptz"},
{"pg_catalog", "pg_stat_all_indexes", "relid", "oid"},
{"pg_catalog", "pg_stat_all_indexes", "relname", "name"},
{"pg_catalog", "pg_stat_all_indexes", "schemaname", "name"},
{"pg_catalog", "pg_stat_all_tables", "analyze_count", "int8"},
{"pg_catalog", "pg_stat_all_tables", "autoanalyze_count", "int8"},
{"pg_catalog", "pg_stat_all_tables", "autovacuum_count", "int8"},
{"pg_catalog", "pg_stat_all_tables", "idx_scan", "int8"},
{"pg_catalog", "pg_stat_all_tables", "idx_tup_fetch", "int8"},
{"pg_catalog", "pg_stat_all_tables", "last_analyze", "timestamptz"},
{"pg_catalog", "pg_stat_all_tables", "last_autoanalyze", "timestamptz"},
{"pg_catalog", "pg_stat_all_tables", "last_autovacuum", "timestamptz"},
{"pg_catalog", "pg_stat_all_tables", "last_idx_scan", "timestamptz"},
{"pg_catalog", "pg_stat_all_tables", "last_seq_scan", "timestamptz"},
{"pg_catalog", "pg_stat_all_tables", "last_vacuum", "timestamptz"},
{"pg_catalog", "pg_stat_all_tables", "n_dead_tup", "int8"},
{"pg_catalog", "pg_stat_all_tables", "n_ins_since_vacuum", "int8"},
{"pg_catalog", "pg_stat_all_tables", "n_live_tup", "int8"},
{"pg_catalog", "pg_stat_all_tables", "n_mod_since_analyze", "int8"},
{"pg_catalog", "pg_stat_all_tables", "n_tup_del", "int8"},
{"pg_catalog", "pg_stat_all_tables", "n_tup_hot_upd", "int8"},
{"pg_catalog", "pg_stat_all_tables", "n_tup_ins", "int8"},
{"pg_catalog", "pg_stat_all_tables", "n_tup_newpage_upd", "int8"},
{"pg_catalog", "pg_stat_all_tables", "n_tup_upd", "int8"},
{"pg_catalog", "pg_stat_all_tables", "relid", "oid"},
{"pg_catalog", "pg_stat_all_tables", "relname", "name"},
{"pg_catalog", "pg_stat_all_tables", "schemaname", "name"},
{"pg_catalog", "pg_stat_all_tables", "seq_scan", "int8"},
{"pg_catalog", "pg_stat_all_tables", "seq_tup_read", "int8"},
{"pg_catalog", "pg_stat_all_tables", "vacuum_count", "int8"},
{"pg_catalog", "pg_stat_archiver", "archived_count", "int8"},
{"pg_catalog", "pg_stat_archiver", "failed_count", "int8"},
{"pg_catalog", "pg_stat_archiver", "last_archived_time", "timestamptz"},
{"pg_catalog", "pg_stat_archiver", "last_archived_wal", "text"},
{"pg_catalog", "pg_stat_archiver", "last_failed_time", "timestamptz"},
{"pg_catalog", "pg_stat_archiver", "last_failed_wal", "text"},
{"pg_catalog", "pg_stat_archiver", "stats_reset", "timestamptz"},
{"pg_catalog", "pg_stat_bgwriter", "buffers_alloc", "int8"},
{"pg_catalog", "pg_stat_bgwriter", "buffers_backend", "int8"},
{"pg_catalog", "pg_stat_bgwriter", "buffers_backend_fsync", "int8"},
{"pg_catalog", "pg_stat_bgwriter", "buffers_checkpoint", "int8"},
{"pg_catalog", "pg_stat_bgwriter", "buffers_clean", "int8"},
{"pg_catalog", "pg_stat_bgwriter", "checkpoint_sync_time", "float8"},
{"pg_catalog", "pg_stat_bgwriter", "checkpoint_write_time", "float8"},
{"pg_catalog", "pg_stat_bgwriter", "checkpoints_req", "int8"},
{"pg_catalog", "pg_stat_bgwriter", "checkpoints_timed", "int8"},
{"pg_catalog", "pg_stat_bgwriter", "maxwritten_clean", "int8"},
{"pg_catalog", "pg_stat_bgwriter", "stats_reset", "timestamptz"},
{"pg_catalog", "pg_stat_database", "active_time", "float8"},
{"pg_catalog", "pg_stat_database", "blk_read_time", "float8"},
{"pg_catalog", "pg_stat_database", "blk_write_time", "float8"},
{"pg_catalog", "pg_stat_database", "blks_hit", "int8"},
{"pg_catalog", "pg_stat_database", "blks_read", "int8"},
{"pg_catalog", "pg_stat_database", "checksum_failures", "int8"},
{"pg_catalog", "pg_stat_database", "checksum_last_failure", "timestamptz"},
{"pg_catalog", "pg_stat_database", "conflicts", "int8"},
{"pg_catalog", "pg_stat_database", "datid", "oid"},
{"pg_catalog", "pg_stat_database", "datname", "name"},
{"pg_catalog", "pg_stat_database", "deadlocks", "int8"},
{"pg_catalog", "pg_stat_database", "idle_in_transaction_time", "float8"},
{"pg_catalog", "pg_stat_database", "numbackends", "int4"},
{"pg_catalog", "pg_stat_database", "session_time", "float8"},
{"pg_catalog", "pg_stat_database", "sessions", "int8"},
{"pg_catalog", "pg_stat_database", "sessions_abandoned", "int8"},
{"pg_catalog", "pg_stat_database", "sessions_fatal", "int8"},
{"pg_catalog", "pg_stat_database", "sessions_killed", "int8"},
{"pg_catalog", "pg_stat_database", "stats_reset", "timestamptz"},
{"pg_catalog", "pg_stat_database", "temp_bytes", "int8"},
{"pg_catalog", "pg_stat_database", "temp_files", "int8"},
{"pg_catalog", "pg_stat_database", "tup_deleted", "int8"},
{"pg_catalog", "pg_stat_database", "tup_fetched", "int8"},
{"pg_catalog", "pg_stat_database", "tup_inserted", "int8"},
{"pg_catalog", "pg_stat_database", "tup_returned", "int8"},
{"pg_catalog", "pg_stat_database", "tup_updated", "int8"},
{"pg_catalog", "pg_stat_database", "xact_commit", "int8"},
{"pg_catalog", "pg_stat_database", "xact_rollback", "int8"},
{"pg_catalog", "pg_stat_database_conflicts", "confl_active_logicalslot", "int8"},
{"pg_catalog", "pg_stat_database_conflicts", "confl_bufferpin", "int8"},
{"pg_catalog", "pg_stat_database_conflicts", "confl_deadlock", "int8"},
{"pg_catalog", "pg_stat_database_conflicts", "confl_lock", "int8"},
{"pg_catalog", "pg_stat_database_conflicts", "confl_snapshot", "int8"},
{"pg_catalog", "pg_stat_database_conflicts", "confl_tablespace", "int8"},
{"pg_catalog", "pg_stat_database_conflicts", "datid", "oid"},
{"pg_catalog", "pg_stat_database_conflicts", "datname", "name"},
{"pg_catalog", "pg_stat_gssapi", "credentials_delegated", "bool"},
{"pg_catalog", "pg_stat_gssapi", "encrypted", "bool"},
{"pg_catalog", "pg_stat_gssapi", "gss_authenticated", "bool"},
{"pg_catalog", "pg_stat_gssapi", "pid", "int4"},
{"pg_catalog", "pg_stat_gssapi", "principal", "text"},
{"pg_catalog", "pg_stat_io", "backend_type", "text"},
{"pg_catalog", "pg_stat_io", "context", "text"},
{"pg_catalog", "pg_stat_io", "evictions", "int8"},
{"pg_catalog", "pg_stat_io", "extend_time", "float8"},
{"pg_catalog", "pg_stat_io", "extends", "int8"},
{"pg_catalog", "pg_stat_io", "fsync_time", "float8"},
{"pg_catalog", "pg_stat_io", "fsyncs", "int8"},
{"pg_catalog", "pg_stat_io", "hits", "int8"},
{"pg_catalog", "pg_stat_io", "object", "text"},
{"pg_catalog", "pg_stat_io", "op_bytes", "int8"},
{"pg_catalog", "pg_stat_io", "read_time", "float8"},
{"pg_catalog", "pg_stat_io", "reads", "int8"},
{"pg_catalog", "pg_stat_io", "reuses", "int8"},
{"pg_catalog", "pg_stat_io", "stats_reset", "timestamptz"},
{"pg_catalog", "pg_stat_io", "write_time", "float8"},
{"pg_catalog", "pg_stat_io", "writeback_time", "float8"},
{"pg_catalog", "pg_stat_io", "writebacks", "int8"},
{"pg_catalog", "pg_stat_io", "writes", "int8"},
{"pg_catalog", "pg_stat_progress_analyze", "child_tables_done", "int8"},
{"pg_catalog", "pg_stat_progress_analyze", "child_tables_total", "int8"},
{"pg_catalog", "pg_stat_progress_analyze", "current_child_table_relid", "oid"},
{"pg_catalog", "pg_stat_progress_analyze", "datid", "oid"},
{"pg_catalog", "pg_stat_progress_analyze", "datname", "name"},
{"pg_catalog", "pg_stat_progress_analyze", "ext_stats_computed", "int8"},
{"pg_catalog", "pg_stat_progress_analyze", "ext_stats_total", "int8"},
{"pg_catalog", "pg_stat_progress_analyze", "phase", "text"},
{"pg_catalog", "pg_stat_progress_analyze", "pid", "int4"},
{"pg_catalog", "pg_stat_progress_analyze", "relid", "oid"},
{"pg_catalog", "pg_stat_progress_analyze", "sample_blks_scanned", "int8"},
{"pg_catalog", "pg_stat_progress_analyze", "sample_blks_total", "int8"},
{"pg_catalog", "pg_stat_progress_basebackup", "backup_streamed", "int8"},
{"pg_catalog", "pg_stat_progress_basebackup", "backup_total", "int8"},
{"pg_catalog", "pg_stat_progress_basebackup", "phase", "text"},
{"pg_catalog", "pg_stat_progress_basebackup", "pid", "int4"},
{"pg_catalog", "pg_stat_progress_basebackup", "tablespaces_streamed", "int8"},
{"pg_catalog", "pg_stat_progress_basebackup", "tablespaces_total", "int8"},
{"pg_catalog", "pg_stat_progress_cluster", "cluster_index_relid", "oid"},
{"pg_catalog", "pg_stat_progress_cluster", "command", "text"},
{"pg_catalog", "pg_stat_progress_cluster", "datid", "oid"},
{"pg_catalog", "pg_stat_progress_cluster", "datname", "name"},
{"pg_catalog", "pg_stat_progress_cluster", "heap_blks_scanned", "int8"},
{"pg_catalog", "pg_stat_progress_cluster", "heap_blks_total", "int8"},
{"pg_catalog", "pg_stat_progress_cluster", "heap_tuples_scanned", "int8"},
{"pg_catalog", "pg_stat_progress_cluster", "heap_tuples_written", "int8"},
{"pg_catalog", "pg_stat_progress_cluster", "index_rebuild_count", "int8"},
{"pg_catalog", "pg_stat_progress_cluster", "phase", "text"},
{"pg_catalog", "pg_stat_progress_cluster", "pid", "int4"},
{"pg_catalog", "pg_stat_progress_cluster", "relid", "oid"},
{"pg_catalog", "pg_stat_progress_copy", "bytes_processed", "int8"},
{"pg_catalog", "pg_stat_progress_copy", "bytes_total", "int8"},
{"pg_catalog", "pg_stat_progress_copy", "command", "text"},
{"pg_catalog", "pg_stat_progress_copy", "datid", "oid"},
{"pg_catalog", "pg_stat_progress_copy", "datname", "name"},
{"pg_catalog", "pg_stat_progress_copy", "pid", "int4"},
{"pg_catalog", "pg_stat_progress_copy", "relid", "oid"},
{"pg_catalog", "pg_stat_progress_copy", "tuples_excluded", "int8"},
{"pg_catalog", "pg_stat_progress_copy", "tuples_processed", "int8"},
{"pg_catalog", "pg_stat_progress_copy", "type", "text"},
{"pg_catalog", "pg_stat_progress_create_index", "blocks_done", "int8"},
{"pg_catalog", "pg_stat_progress_create_index", "blocks_total", "int8"},
{"pg_catalog", "pg_stat_progress_create_index", "command", "text"},
{"pg_catalog", "pg_stat_progress_create_index", "current_locker_pid", "int8"},
{"pg_catalog", "pg_stat_progress_create_index", "datid", "oid"},
{"pg_catalog", "pg_stat_progress_create_index", "datname", "name"},
{"pg_catalog", "pg_stat_progress_create_index", "index_relid", "oid"},
{"pg_catalog", "pg_stat_progress_create_index", "lockers_done", "int8"},
{"pg_catalog", "pg_stat_progress_create_index", "lockers_total", "int8"},
{"pg_catalog", "pg_stat_progress_create_index", "partitions_done", "int8"},
{"pg_catalog", "pg_stat_progress_create_index", "partitions_total", "int8"},
{"pg_catalog", "pg_stat_progress_create_index", "phase", "text"},
{"pg_catalog", "pg_stat_progress_create_index", "pid", "int4"},
{"pg_catalog", "pg_stat_progress_create_index", "relid", "oid"},
{"pg_catalog", "pg_stat_progress_create_index", "tuples_done", "int8"},
{"pg_catalog", "pg_stat_progress_create_index", "tuples_total", "int8"},
{"pg_catalog", "pg_stat_progress_vacuum", "datid", "oid"},
{"pg_catalog", "pg_stat_progress_vacuum", "datname", "name"},
{"pg_catalog", "pg_stat_progress_vacuum", "heap_blks_scanned", "int8"},
{"pg_catalog", "pg_stat_progress_vacuum", "heap_blks_total", "int8"},
{"pg_catalog", "pg_stat_progress_vacuum", "heap_blks_vacuumed", "int8"},
{"pg_catalog", "pg_stat_progress_vacuum", "index_vacuum_count", "int8"},
{"pg_catalog", "pg_stat_progress_vacuum", "max_dead_tuples", "int8"},
{"pg_catalog", "pg_stat_progress_vacuum", "num_dead_tuples", "int8"},
{"pg_catalog", "pg_stat_progress_vacuum", "phase", "text"},
{"pg_catalog", "pg_stat_progress_vacuum", "pid", "int4"},
{"pg_catalog", "pg_stat_progress_vacuum", "relid", "oid"},
{"pg_catalog", "pg_stat_recovery_prefetch", "block_distance", "int4"},
{"pg_catalog", "pg_stat_recovery_prefetch", "hit", "int8"},
{"pg_catalog", "pg_stat_recovery_prefetch", "io_depth", "int4"},
{"pg_catalog", "pg_stat_recovery_prefetch", "prefetch", "int8"},
{"pg_catalog", "pg_stat_recovery_prefetch", "skip_fpw", "int8"},
{"pg_catalog", "pg_stat_recovery_prefetch", "skip_init", "int8"},
{"pg_catalog", "pg_stat_recovery_prefetch", "skip_new", "int8"},
{"pg_catalog", "pg_stat_recovery_prefetch", "skip_rep", "int8"},
{"pg_catalog", "pg_stat_recovery_prefetch", "stats_reset", "timestamptz"},
{"pg_catalog", "pg_stat_recovery_prefetch", "wal_distance", "int4"},
{"pg_catalog", "pg_stat_replication", "application_name", "text"},
{"pg_catalog", "pg_stat_replication", "backend_start", "timestamptz"},
{"pg_catalog", "pg_stat_replication", "backend_xmin", "xid"},
{"pg_catalog", "pg_stat_replication", "client_addr", "inet"},
{"pg_catalog", "pg_stat_replication", "client_hostname", "text"},
{"pg_catalog", "pg_stat_replication", "client_port", "int4"},
{"pg_catalog", "pg_stat_replication", "flush_lag", "interval"},
{"pg_catalog", "pg_stat_replication", "flush_lsn", "pg_lsn"},
{"pg_catalog", "pg_stat_replication", "pid", "int4"},
{"pg_catalog", "pg_stat_replication", "replay_lag", "interval"},
{"pg_catalog", "pg_stat_replication", "replay_lsn", "pg_lsn"},
{"pg_catalog", "pg_stat_replication", "reply_time", "timestamptz"},
{"pg_catalog", "pg_stat_replication", "sent_lsn", "pg_lsn"},
{"pg_catalog", "pg_stat_replication", "state", "text"},
{"pg_catalog", "pg_stat_replication", "sync_priority", "int4"},
{"pg_catalog", "pg_stat_replication", "sync_state", "text"},
{"pg_catalog", "pg_stat_replication", "usename", "name"},
{"pg_catalog", "pg_stat_replication", "usesysid", "oid"},
{"pg_catalog", "pg_stat_replication", "write_lag", "interval"},
{"pg_catalog", "pg_stat_replication", "write_lsn", "pg_lsn"},
{"pg_catalog", "pg_stat_replication_slots", "slot_name", "text"},
{"pg_catalog", "pg_stat_replication_slots", "spill_bytes", "int8"},
{"pg_catalog", "pg_stat_replication_slots", "spill_count", "int8"},
{"pg_catalog", "pg_stat_replication_slots", "spill_txns", "int8"},
{"pg_catalog", "pg_stat_replication_slots", "stats_reset", "timestamptz"},
{"pg_catalog", "pg_stat_replication_slots", "stream_bytes", "int8"},
{"pg_catalog", "pg_stat_replication_slots", "stream_count", "int8"},
{"pg_catalog", "pg_stat_replication_slots", "stream_txns", "int8"},
{"pg_catalog", "pg_stat_replication_slots", "total_bytes", "int8"},
{"pg_catalog", "pg_stat_replication_slots", "total_txns", "int8"},
{"pg_catalog", "pg_stat_slru", "blks_exists", "int8"},
{"pg_catalog", "pg_stat_slru", "blks_hit", "int8"},
{"pg_catalog", "pg_stat_slru", "blks_read", "int8"},
{"pg_catalog", "pg_stat_slru", "blks_written", "int8"},
{"pg_catalog", "pg_stat_slru", "blks_zeroed", "int8"},
{"pg_catalog", "pg_stat_slru", "flushes", "int8"},
{"pg_catalog", "pg_stat_slru", "name", "text"},
{"pg_catalog", "pg_stat_slru", "stats_reset", "timestamptz"},
{"pg_catalog", "pg_stat_slru", "truncates", "int8"},
{"pg_catalog", "pg_stat_ssl", "bits", "int4"},
{"pg_catalog", "pg_stat_ssl", "cipher", "text"},
{"pg_catalog", "pg_stat_ssl", "client_dn", "text"},
{"pg_catalog", "pg_stat_ssl", "client_serial", "numeric"},
{"pg_catalog", "pg_stat_ssl", "issuer_dn", "text"},
{"pg_catalog", "pg_stat_ssl", "pid", "int4"},
{"pg_catalog", "pg_stat_ssl", "ssl", "bool"},
{"pg_catalog", "pg_stat_ssl", "version", "text"},
{"pg_catalog", "pg_stat_subscription", "last_msg_receipt_time", "timestamptz"},
{"pg_catalog", "pg_stat_subscription", "last_msg_send_time", "timestamptz"},
{"pg_catalog", "pg_stat_subscription", "latest_end_lsn", "pg_lsn"},
{"pg_catalog", "pg_stat_subscription", "latest_end_time", "timestamptz"},
{"pg_catalog", "pg_stat_subscription", "leader_pid", "int4"},
{"pg_catalog", "pg_stat_subscription", "pid", "int4"},
{"pg_catalog", "pg_stat_subscription", "received_lsn", "pg_lsn"},
{"pg_catalog", "pg_stat_subscription", "relid", "oid"},
{"pg_catalog", "pg_stat_subscription", "subid", "oid"},
{"pg_catalog", "pg_stat_subscription", "subname", "name"},
{"pg_catalog", "pg_stat_subscription_stats", "apply_error_count", "int8"},
{"pg_catalog", "pg_stat_subscription_stats", "stats_reset", "timestamptz"},
{"pg_catalog", "pg_stat_subscription_stats", "subid", "oid"},
{"pg_catalog", "pg_stat_subscription_stats", "subname", "name"},
{"pg_catalog", "pg_stat_subscription_stats", "sync_error_count", "int8"},
{"pg_catalog", "pg_stat_sys_indexes", "idx_scan", "int8"},
{"pg_catalog", "pg_stat_sys_indexes", "idx_tup_fetch", "int8"},
{"pg_catalog", "pg_stat_sys_indexes", "idx_tup_read", "int8"},
{"pg_catalog", "pg_stat_sys_indexes", "indexrelid", "oid"},
{"pg_catalog", "pg_stat_sys_indexes", "indexrelname", "name"},
{"pg_catalog", "pg_stat_sys_indexes", "last_idx_scan", "timestamptz"},
{"pg_catalog", "pg_stat_sys_indexes", "relid", "oid"},
{"pg_catalog", "pg_stat_sys_indexes", "relname", "name"},
{"pg_catalog", "pg_stat_sys_indexes", "schemaname", "name"},
{"pg_catalog", "pg_stat_sys_tables", "analyze_count", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "autoanalyze_count", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "autovacuum_count", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "idx_scan", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "idx_tup_fetch", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "last_analyze", "timestamptz"},
{"pg_catalog", "pg_stat_sys_tables", "last_autoanalyze", "timestamptz"},
{"pg_catalog", "pg_stat_sys_tables", "last_autovacuum", "timestamptz"},
{"pg_catalog", "pg_stat_sys_tables", "last_idx_scan", "timestamptz"},
{"pg_catalog", "pg_stat_sys_tables", "last_seq_scan", "timestamptz"},
{"pg_catalog", "pg_stat_sys_tables", "last_vacuum", "timestamptz"},
{"pg_catalog", "pg_stat_sys_tables", "n_dead_tup", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "n_ins_since_vacuum", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "n_live_tup", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "n_mod_since_analyze", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "n_tup_del", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "n_tup_hot_upd", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "n_tup_ins", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "n_tup_newpage_upd", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "n_tup_upd", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "relid", "oid"},
{"pg_catalog", "pg_stat_sys_tables", "relname", "name"},
{"pg_catalog", "pg_stat_sys_tables", "schemaname", "name"},
{"pg_catalog", "pg_stat_sys_tables", "seq_scan", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "seq_tup_read", "int8"},
{"pg_catalog", "pg_stat_sys_tables", "vacuum_count", "int8"},
{"pg_catalog", "pg_stat_user_functions", "calls", "int8"},
{"pg_catalog", "pg_stat_user_functions", "funcid", "oid"},
{"pg_catalog", "pg_stat_user_functions", "funcname", "name"},
{"pg_catalog", "pg_stat_user_functions", "schemaname", "name"},
{"pg_catalog", "pg_stat_user_functions", "self_time", "float8"},
{"pg_catalog", "pg_stat_user_functions", "total_time", "float8"},
{"pg_catalog", "pg_stat_user_indexes", "idx_scan", "int8"},
{"pg_catalog", "pg_stat_user_indexes", "idx_tup_fetch", "int8"},
{"pg_catalog", "pg_stat_user_indexes", "idx_tup_read", "int8"},
{"pg_catalog", "pg_stat_user_indexes", "indexrelid", "oid"},
{"pg_catalog", "pg_stat_user_indexes", "indexrelname", "name"},
{"pg_catalog", "pg_stat_user_indexes", "last_idx_scan", "timestamptz"},
{"pg_catalog", "pg_stat_user_indexes", "relid", "oid"},
{"pg_catalog", "pg_stat_user_indexes", "relname", "name"},
{"pg_catalog", "pg_stat_user_indexes", "schemaname", "name"},
{"pg_catalog", "pg_stat_user_tables", "analyze_count", "int8"},
{"pg_catalog", "pg_stat_user_tables", "autoanalyze_count", "int8"},
{"pg_catalog", "pg_stat_user_tables", "autovacuum_count", "int8"},
{"pg_catalog", "pg_stat_user_tables", "idx_scan", "int8"},
{"pg_catalog", "pg_stat_user_tables", "idx_tup_fetch", "int8"},
{"pg_catalog", "pg_stat_user_tables", "last_analyze", "timestamptz"},
{"pg_catalog", "pg_stat_user_tables", "last_autoanalyze", "timestamptz"},
{"pg_catalog", "pg_stat_user_tables", "last_autovacuum", "timestamptz"},
{"pg_catalog", "pg_stat_user_tables", "last_idx_scan", "timestamptz"},
{"pg_catalog", "pg_stat_user_tables", "last_seq_scan", "timestamptz"},
{"pg_catalog", "pg_stat_user_tables", "last_vacuum", "timestamptz"},
{"pg_catalog", "pg_stat_user_tables", "n_dead_tup", "int8"},
{"pg_catalog", "pg_stat_user_tables", "n_ins_since_vacuum", "int8"},
{"pg_catalog", "pg_stat_user_tables", "n_live_tup", "int8"},
{"pg_catalog", "pg_stat_user_tables", "n_mod_since_analyze", "int8"},
{"pg_catalog", "pg_stat_user_tables", "n_tup_del", "int8"},
{"pg_catalog", "pg_stat_user_tables", "n_tup_hot_upd", "int8"},
{"pg_catalog", "pg_stat_user_tables", "n_tup_ins", "int8"},
{"pg_catalog", "pg_stat_user_tables", "n_tup_newpage_upd", "int8"},
{"pg_catalog", "pg_stat_user_tables", "n_tup_upd", "int8"},
{"pg_catalog", "pg_stat_user_tables", "relid", "oid"},
{"pg_catalog", "pg_stat_user_tables", "relname", "name"},
{"pg_catalog", "pg_stat_user_tables", "schemaname", "name"},
{"pg_catalog", "pg_stat_user_tables", "seq_scan", "int8"},
{"pg_catalog", "pg_stat_user_tables", "seq_tup_read", "int8"},
{"pg_catalog", "pg_stat_user_tables", "vacuum_count", "int8"},
{"pg_catalog", "pg_stat_wal", "stats_reset", "timestamptz"},
{"pg_catalog", "pg_stat_wal", "wal_buffers_full", "int8"},
{"pg_catalog", "pg_stat_wal", "wal_bytes", "numeric"},
{"pg_catalog", "pg_stat_wal", "wal_fpi", "int8"},
{"pg_catalog", "pg_stat_wal", "wal_records", "int8"},
{"pg_catalog", "pg_stat_wal", "wal_sync", "int8"},
{"pg_catalog", "pg_stat_wal", "wal_sync_time", "float8"},
{"pg_catalog", "pg_stat_wal", "wal_write", "int8"},
{"pg_catalog", "pg_stat_wal", "wal_write_time", "float8"},
{"pg_catalog", "pg_stat_wal_receiver", "conninfo", "text"},
{"pg_catalog", "pg_stat_wal_receiver", "flushed_lsn", "pg_lsn"},
{"pg_catalog", "pg_stat_wal_receiver", "last_msg_receipt_time", "timestamptz"},
{"pg_catalog", "pg_stat_wal_receiver", "last_msg_send_time", "timestamptz"},
{"pg_catalog", "pg_stat_wal_receiver", "latest_end_lsn", "pg_lsn"},
{"pg_catalog", "pg_stat_wal_receiver", "latest_end_time", "timestamptz"},
{"pg_catalog", "pg_stat_wal_receiver", "pid", "int4"},
{"pg_catalog", "pg_stat_wal_receiver", "receive_start_lsn", "pg_lsn"},
{"pg_catalog", "pg_stat_wal_receiver", "receive_start_tli", "int4"},
{"pg_catalog", "pg_stat_wal_receiver", "received_tli", "int4"},
{"pg_catalog", "pg_stat_wal_receiver", "sender_host", "text"},
{"pg_catalog", "pg_stat_wal_receiver", "sender_port", "int4"},
{"pg_catalog", "pg_stat_wal_receiver", "slot_name", "text"},
{"pg_catalog", "pg_stat_wal_receiver", "status", "text"},
{"pg_catalog", "pg_stat_wal_receiver", "written_lsn", "pg_lsn"},
{"pg_catalog", "pg_stat_xact_all_tables", "idx_scan", "int8"},
{"pg_catalog", "pg_stat_xact_all_tables", "idx_tup_fetch", "int8"},
{"pg_catalog", "pg_stat_xact_all_tables", "n_tup_del", "int8"},
{"pg_catalog", "pg_stat_xact_all_tables", "n_tup_hot_upd", "int8"},
{"pg_catalog", "pg_stat_xact_all_tables", "n_tup_ins", "int8"},
{"pg_catalog", "pg_stat_xact_all_tables", "n_tup_newpage_upd", "int8"},
{"pg_catalog", "pg_stat_xact_all_tables", "n_tup_upd", "int8"},
{"pg_catalog", "pg_stat_xact_all_tables", "relid", "oid"},
{"pg_catalog", "pg_stat_xact_all_tables", "relname", "name"},
{"pg_catalog", "pg_stat_xact_all_tables", "schemaname", "name"},
{"pg_catalog", "pg_stat_xact_all_tables", "seq_scan", "int8"},
{"pg_catalog", "pg_stat_xact_all_tables", "seq_tup_read", "int8"},
{"pg_catalog", "pg_stat_xact_sys_tables", "idx_scan", "int8"},
{"pg_catalog", "pg_stat_xact_sys_tables", "idx_tup_fetch", "int8"},
{"pg_catalog", "pg_stat_xact_sys_tables", "n_tup_del", "int8"},
{"pg_catalog", "pg_stat_xact_sys_tables", "n_tup_hot_upd", "int8"},
{"pg_catalog", "pg_stat_xact_sys_tables", "n_tup_ins", "int8"},
{"pg_catalog", "pg_stat_xact_sys_tables", "n_tup_newpage_upd", "int8"},
{"pg_catalog", "pg_stat_xact_sys_tables", "n_tup_upd", "int8"},
{"pg_catalog", "pg_stat_xact_sys_tables", "relid", "oid"},
{"pg_catalog", "pg_stat_xact_sys_tables", "relname", "name"},
{"pg_catalog", "pg_stat_xact_sys_tables", "schemaname", "name"},
{"pg_catalog", "pg_stat_xact_sys_tables", "seq_scan", "int8"},
{"pg_catalog", "pg_stat_xact_sys_tables", "seq_tup_read", "int8"},
{"pg_catalog", "pg_stat_xact_user_functions", "calls", "int8"},
{"pg_catalog", "pg_stat_xact_user_functions", "funcid", "oid"},
{"pg_catalog", "pg_stat_xact_user_functions", "funcname", "name"},
{"pg_catalog", "pg_stat_xact_user_functions", "schemaname", "name"},
{"pg_catalog", "pg_stat_xact_user_functions", "self_time", "float8"},
{"pg_catalog", "pg_stat_xact_user_functions", "total_time", "float8"},
{"pg_catalog", "pg_stat_xact_user_tables", "idx_scan", "int8"},
{"pg_catalog", "pg_stat_xact_user_tables", "idx_tup_fetch", "int8"},
{"pg_catalog", "pg_stat_xact_user_tables", "n_tup_del", "int8"},
{"pg_catalog", "pg_stat_xact_user_tables", "n_tup_hot_upd", "int8"},
{"pg_catalog", "pg_stat_xact_user_tables", "n_tup_ins", "int8"},
{"pg_catalog", "pg_stat_xact_user_tables", "n_tup_newpage_upd", "int8"},
{"pg_catalog", "pg_stat_xact_user_tables", "n_tup_upd", "int8"},
{"pg_catalog", "pg_stat_xact_user_tables", "relid", "oid"},
{"pg_catalog", "pg_stat_xact_user_tables", "relname", "name"},
{"pg_catalog", "pg_stat_xact_user_tables", "schemaname", "name"},
{"pg_catalog", "pg_stat_xact_user_tables", "seq_scan", "int8"},
{"pg_catalog", "pg_stat_xact_user_tables", "seq_tup_read", "int8"},
{"pg_catalog", "pg_statio_all_indexes", "idx_blks_hit", "int8"},
{"pg_catalog", "pg_statio_all_indexes", "idx_blks_read", "int8"},
{"pg_catalog", "pg_statio_all_indexes", "indexrelid", "oid"},
{"pg_catalog", "pg_statio_all_indexes", "indexrelname", "name"},
{"pg_catalog", "pg_statio_all_indexes", "relid", "oid"},
{"pg_catalog", "pg_statio_all_indexes", "relname", "name"},
{"pg_catalog", "pg_statio_all_indexes", "schemaname", "name"},
{"pg_catalog", "pg_statio_all_sequences", "blks_hit", "int8"},
{"pg_catalog", "pg_statio_all_sequences", "blks_read", "int8"},
{"pg_catalog", "pg_statio_all_sequences", "relid", "oid"},
{"pg_catalog", "pg_statio_all_sequences", "relname", "name"},
{"pg_catalog", "pg_statio_all_sequences", "schemaname", "name"},
{"pg_catalog", "pg_statio_all_tables", "heap_blks_hit", "int8"},
{"pg_catalog", "pg_statio_all_tables", "heap_blks_read", "int8"},
{"pg_catalog", "pg_statio_all_tables", "idx_blks_hit", "int8"},
{"pg_catalog", "pg_statio_all_tables", "idx_blks_read", "int8"},
{"pg_catalog", "pg_statio_all_tables", "relid", "oid"},
{"pg_catalog", "pg_statio_all_tables", "relname", "name"},
{"pg_catalog", "pg_statio_all_tables", "schemaname", "name"},
{"pg_catalog", "pg_statio_all_tables", "tidx_blks_hit", "int8"},
{"pg_catalog", "pg_statio_all_tables", "tidx_blks_read", "int8"},
{"pg_catalog", "pg_statio_all_tables", "toast_blks_hit", "int8"},
{"pg_catalog", "pg_statio_all_tables", "toast_blks_read", "int8"},
{"pg_catalog", "pg_statio_sys_indexes", "idx_blks_hit", "int8"},
{"pg_catalog", "pg_statio_sys_indexes", "idx_blks_read", "int8"},
{"pg_catalog", "pg_statio_sys_indexes", "indexrelid", "oid"},
{"pg_catalog", "pg_statio_sys_indexes", "indexrelname", "name"},
{"pg_catalog", "pg_statio_sys_indexes", "relid", "oid"},
{"pg_catalog", "pg_statio_sys_indexes", "relname", "name"},
{"pg_catalog", "pg_statio_sys_indexes", "schemaname", "name"},
{"pg_catalog", "pg_statio_sys_sequences", "blks_hit", "int8"},
{"pg_catalog", "pg_statio_sys_sequences", "blks_read", "int8"},
{"pg_catalog", "pg_statio_sys_sequences", "relid", "oid"},
{"pg_catalog", "pg_statio_sys_sequences", "relname", "name"},
{"pg_catalog", "pg_statio_sys_sequences", "schemaname", "name"},
{"pg_catalog", "pg_statio_sys_tables", "heap_blks_hit", "int8"},
{"pg_catalog", "pg_statio_sys_tables", "heap_blks_read", "int8"},
{"pg_catalog", "pg_statio_sys_tables", "idx_blks_hit", "int8"},
{"pg_catalog", "pg_statio_sys_tables", "idx_blks_read", "int8"},
{"pg_catalog", "pg_statio_sys_tables", "relid", "oid"},
{"pg_catalog", "pg_statio_sys_tables", "relname", "name"},
{"pg_catalog", "pg_statio_sys_tables", "schemaname", "name"},
{"pg_catalog", "pg_statio_sys_tables", "tidx_blks_hit", "int8"},
{"pg_catalog", "pg_statio_sys_tables", "tidx_blks_read", "int8"},
{"pg_catalog", "pg_statio_sys_tables", "toast_blks_hit", "int8"},
{"pg_catalog", "pg_statio_sys_tables", "toast_blks_read", "int8"},
{"pg_catalog", "pg_statio_user_indexes", "idx_blks_hit", "int8"},
{"pg_catalog", "pg_statio_user_indexes", "idx_blks_read", "int8"},
{"pg_catalog", "pg_statio_user_indexes", "indexrelid", "oid"},
{"pg_catalog", "pg_statio_user_indexes", "indexrelname", "name"},
{"pg_catalog", "pg_statio_user_indexes", "relid", "oid"},
{"pg_catalog", "pg_statio_user_indexes", "relname", "name"},
{"pg_catalog", "pg_statio_user_indexes", "schemaname", "name"},
{"pg_catalog", "pg_statio_user_sequences", "blks_hit", "int8"},
{"pg_catalog", "pg_statio_user_sequences", "blks_read", "int8"},
{"pg_catalog", "pg_statio_user_sequences", "relid", "oid"},
{"pg_catalog", "pg_statio_user_sequences", "relname", "name"},
{"pg_catalog", "pg_statio_user_sequences", "schemaname", "name"},
{"pg_catalog", "pg_statio_user_tables", "heap_blks_hit", "int8"},
{"pg_catalog", "pg_statio_user_tables", "heap_blks_read", "int8"},
{"pg_catalog", "pg_statio_user_tables", "idx_blks_hit", "int8"},
{"pg_catalog", "pg_statio_user_tables", "idx_blks_read", "int8"},
{"pg_catalog", "pg_statio_user_tables", "relid", "oid"},
{"pg_catalog", "pg_statio_user_tables", "relname", "name"},
{"pg_catalog", "pg_statio_user_tables", "schemaname", "name"},
{"pg_catalog", "pg_statio_user_tables", "tidx_blks_hit", "int8"},
{"pg_catalog", "pg_statio_user_tables", "tidx_blks_read", "int8"},
{"pg_catalog", "pg_statio_user_tables", "toast_blks_hit", "int8"},
{"pg_catalog", "pg_statio_user_tables", "toast_blks_read", "int8"},
{"pg_catalog", "pg_statistic", "staattnum", "int2"},
{"pg_catalog", "pg_statistic", "stacoll1", "oid"},
{"pg_catalog", "pg_statistic", "stacoll2", "oid"},
{"pg_catalog", "pg_statistic", "stacoll3", "oid"},
{"pg_catalog", "pg_statistic", "stacoll4", "oid"},
{"pg_catalog", "pg_statistic", "stacoll5", "oid"},
{"pg_catalog", "pg_statistic", "stadistinct", "float4"},
{"pg_catalog", "pg_statistic", "stainherit", "bool"},
{"pg_catalog", "pg_statistic", "stakind1", "int2"},
{"pg_catalog", "pg_statistic", "stakind2", "int2"},
{"pg_catalog", "pg_statistic", "stakind3", "int2"},
{"pg_catalog", "pg_statistic", "stakind4", "int2"},
{"pg_catalog", "pg_statistic", "stakind5", "int2"},
{"pg_catalog", "pg_statistic", "stanullfrac", "float4"},
{"pg_catalog", "pg_statistic", "stanumbers1", "_float4"},
{"pg_catalog", "pg_statistic", "stanumbers2", "_float4"},
{"pg_catalog", "pg_statistic", "stanumbers3", "_float4"},
{"pg_catalog", "pg_statistic", "stanumbers4", "_float4"},
{"pg_catalog", "pg_statistic", "stanumbers5", "_float4"},
{"pg_catalog", "pg_statistic", "staop1", "oid"},
{"pg_catalog", "pg_statistic", "staop2", "oid"},
{"pg_catalog", "pg_statistic", "staop3", "oid"},
{"pg_catalog", "pg_statistic", "staop4", "oid"},
{"pg_catalog", "pg_statistic", "staop5", "oid"},
{"pg_catalog", "pg_statistic", "starelid", "oid"},
{"pg_catalog", "pg_statistic", "stavalues1", "anyarray"},
{"pg_catalog", "pg_statistic", "stavalues2", "anyarray"},
{"pg_catalog", "pg_statistic", "stavalues3", "anyarray"},
{"pg_catalog", "pg_statistic", "stavalues4", "anyarray"},
{"pg_catalog", "pg_statistic", "stavalues5", "anyarray"},
{"pg_catalog", "pg_statistic", "stawidth", "int4"},
{"pg_catalog", "pg_statistic_ext", "oid", "oid"},
{"pg_catalog", "pg_statistic_ext", "stxexprs", "pg_node_tree"},
{"pg_catalog", "pg_statistic_ext", "stxkeys", "int2vector"},
{"pg_catalog", "pg_statistic_ext", "stxkind", "_char"},
{"pg_catalog", "pg_statistic_ext", "stxname", "name"},
{"pg_catalog", "pg_statistic_ext", "stxnamespace", "oid"},
{"pg_catalog", "pg_statistic_ext", "stxowner", "oid"},
{"pg_catalog", "pg_statistic_ext", "stxrelid", "oid"},
{"pg_catalog", "pg_statistic_ext", "stxstattarget", "int4"},
{"pg_catalog", "pg_statistic_ext_data", "stxddependencies", "pg_dependencies"},
{"pg_catalog", "pg_statistic_ext_data", "stxdexpr", "_pg_statistic"},
{"pg_catalog", "pg_statistic_ext_data", "stxdinherit", "bool"},
{"pg_catalog", "pg_statistic_ext_data", "stxdmcv", "pg_mcv_list"},
{"pg_catalog", "pg_statistic_ext_data", "stxdndistinct", "pg_ndistinct"},
{"pg_catalog", "pg_statistic_ext_data", "stxoid", "oid"},
{"pg_catalog", "pg_stats", "attname", "name"},
{"pg_catalog", "pg_stats", "avg_width", "int4"},
{"pg_catalog", "pg_stats", "correlation", "float4"},
{"pg_catalog", "pg_stats", "elem_count_histogram", "_float4"},
{"pg_catalog", "pg_stats", "histogram_bounds", "anyarray"},
{"pg_catalog", "pg_stats", "inherited", "bool"},
{"pg_catalog", "pg_stats", "most_common_elem_freqs", "_float4"},
{"pg_catalog", "pg_stats", "most_common_elems", "anyarray"},
{"pg_catalog", "pg_stats", "most_common_freqs", "_float4"},
{"pg_catalog", "pg_stats", "most_common_vals", "anyarray"},
{"pg_catalog", "pg_stats", "n_distinct", "float4"},
{"pg_catalog", "pg_stats", "null_frac", "float4"},
{"pg_catalog", "pg_stats", "schemaname", "name"},
{"pg_catalog", "pg_stats", "tablename", "name"},
{"pg_catalog", "pg_stats_ext", "attnames", "_name"},
{"pg_catalog", "pg_stats_ext", "dependencies", "pg_dependencies"},
{"pg_catalog", "pg_stats_ext", "exprs", "_text"},
{"pg_catalog", "pg_stats_ext", "inherited", "bool"},
{"pg_catalog", "pg_stats_ext", "kinds", "_char"},
{"pg_catalog", "pg_stats_ext", "most_common_base_freqs", "_float8"},
{"pg_catalog", "pg_stats_ext", "most_common_freqs", "_float8"},
{"pg_catalog", "pg_stats_ext", "most_common_val_nulls", "_bool"},
{"pg_catalog", "pg_stats_ext", "most_common_vals", "_text"},
{"pg_catalog", "pg_stats_ext", "n_distinct", "pg_ndistinct"},
{"pg_catalog", "pg_stats_ext", "schemaname", "name"},
{"pg_catalog", "pg_stats_ext", "statistics_name", "name"},
{"pg_catalog", "pg_stats_ext", "statistics_owner", "name"},
{"pg_catalog", "pg_stats_ext", "statistics_schemaname", "name"},
{"pg_catalog", "pg_stats_ext", "tablename", "name"},
{"pg_catalog", "pg_stats_ext_exprs", "avg_width", "int4"},
{"pg_catalog", "pg_stats_ext_exprs", "correlation", "float4"},
{"pg_catalog", "pg_stats_ext_exprs", "elem_count_histogram", "_float4"},
{"pg_catalog", "pg_stats_ext_exprs", "expr", "text"},
{"pg_catalog", "pg_stats_ext_exprs", "histogram_bounds", "anyarray"},
{"pg_catalog", "pg_stats_ext_exprs", "inherited", "bool"},
{"pg_catalog", "pg_stats_ext_exprs", "most_common_elem_freqs", "_float4"},
{"pg_catalog", "pg_stats_ext_exprs", "most_common_elems", "anyarray"},
{"pg_catalog", "pg_stats_ext_exprs", "most_common_freqs", "_float4"},
{"pg_catalog", "pg_stats_ext_exprs", "most_common_vals", "anyarray"},
{"pg_catalog", "pg_stats_ext_exprs", "n_distinct", "float4"},
{"pg_catalog", "pg_stats_ext_exprs", "null_frac", "float4"},
{"pg_catalog", "pg_stats_ext_exprs", "schemaname", "name"},
{"pg_catalog", "pg_stats_ext_exprs", "statistics_name", "name"},
{"pg_catalog", "pg_stats_ext_exprs", "statistics_owner", "name"},
{"pg_catalog", "pg_stats_ext_exprs", "statistics_schemaname", "name"},
{"pg_catalog", "pg_stats_ext_exprs", "tablename", "name"},
{"pg_catalog", "pg_subscription", "oid", "oid"},
{"pg_catalog", "pg_subscription", "subbinary", "bool"},
{"pg_catalog", "pg_subscription", "subconninfo", "text"},
{"pg_catalog", "pg_subscription", "subdbid", "oid"},
{"pg_catalog", "pg_subscription", "subdisableonerr", "bool"},
{"pg_catalog", "pg_subscription", "subenabled", "bool"},
{"pg_catalog", "pg_subscription", "subname", "name"},
{"pg_catalog", "pg_subscription", "suborigin", "text"},
{"pg_catalog", "pg_subscription", "subowner", "oid"},
{"pg_catalog", "pg_subscription", "subpasswordrequired", "bool"},
{"pg_catalog", "pg_subscription", "subpublications", "_text"},
{"pg_catalog", "pg_subscription", "subrunasowner", "bool"},
{"pg_catalog", "pg_subscription", "subskiplsn", "pg_lsn"},
{"pg_catalog", "pg_subscription", "subslotname", "name"},
{"pg_catalog", "pg_subscription", "substream", "char"},
{"pg_catalog", "pg_subscription", "subsynccommit", "text"},
{"pg_catalog", "pg_subscription", "subtwophasestate", "char"},
{"pg_catalog", "pg_subscription_rel", "srrelid", "oid"},
{"pg_catalog", "pg_subscription_rel", "srsubid", "oid"},
{"pg_catalog", "pg_subscription_rel", "srsublsn", "pg_lsn"},
{"pg_catalog", "pg_subscription_rel", "srsubstate", "char"},
{"pg_catalog", "pg_tables", "hasindexes", "bool"},
{"pg_catalog", "pg_tables", "hasrules", "bool"},
{"pg_catalog", "pg_tables", "hastriggers", "bool"},
{"pg_catalog", "pg_tables", "rowsecurity", "bool"},
{"pg_catalog", "pg_tables", "schemaname", "name"},
{"pg_catalog", "pg_tables", "tablename", "name"},
{"pg_catalog", "pg_tables", "tableowner", "name"},
{"pg_catalog", "pg_tables", "tablespace", "name"},
{"pg_catalog", "pg_tablespace", "oid", "oid"},
{"pg_catalog", "pg_tablespace", "spcacl", "_aclitem"},
{"pg_catalog", "pg_tablespace", "spcname", "name"},
{"pg_catalog", "pg_tablespace", "spcoptions", "_text"},
{"pg_catalog", "pg_tablespace", "spcowner", "oid"},
{"pg_catalog", "pg_timezone_abbrevs", "abbrev", "text"},
{"pg_catalog", "pg_timezone_abbrevs", "is_dst", "bool"},
{"pg_catalog", "pg_timezone_abbrevs", "utc_offset", "interval"},
{"pg_catalog", "pg_timezone_names", "abbrev", "text"},
{"pg_catalog", "pg_timezone_names", "is_dst", "bool"},
{"pg_catalog", "pg_timezone_names", "name", "text"},
{"pg_catalog", "pg_timezone_names", "utc_offset", "interval"},
{"pg_catalog", "pg_transform", "oid", "oid"},
{"pg_catalog", "pg_transform", "trffromsql", "regproc"},
{"pg_catalog", "pg_transform", "trflang", "oid"},
{"pg_catalog", "pg_transform", "trftosql", "regproc"},
{"pg_catalog", "pg_transform", "trftype", "oid"},
{"pg_catalog", "pg_trigger", "oid", "oid"},
{"pg_catalog", "pg_trigger", "tgargs", "bytea"},
{"pg_catalog", "pg_trigger", "tgattr", "int2vector"},
{"pg_catalog", "pg_trigger", "tgconstraint", "oid"},
{"pg_catalog", "pg_trigger", "tgconstrindid", "oid"},
{"pg_catalog", "pg_trigger", "tgconstrrelid", "oid"},
{"pg_catalog", "pg_trigger", "tgdeferrable", "bool"},
{"pg_catalog", "pg_trigger", "tgenabled", "char"},
{"pg_catalog", "pg_trigger", "tgfoid", "oid"},
{"pg_catalog", "pg_trigger", "tginitdeferred", "bool"},
{"pg_catalog", "pg_trigger", "tgisinternal", "bool"},
{"pg_catalog", "pg_trigger", "tgname", "name"},
{"pg_catalog", "pg_trigger", "tgnargs", "int2"},
{"pg_catalog", "pg_trigger", "tgnewtable", "name"},
{"pg_catalog", "pg_trigger", "tgoldtable", "name"},
{"pg_catalog", "pg_trigger", "tgparentid", "oid"},
{"pg_catalog", "pg_trigger", "tgqual", "pg_node_tree"},
{"pg_catalog", "pg_trigger", "tgrelid", "oid"},
{"pg_catalog", "pg_trigger", "tgtype", "int2"},
{"pg_catalog", "pg_ts_config", "cfgname", "name"},
{"pg_catalog", "pg_ts_config", "cfgnamespace", "oid"},
{"pg_catalog", "pg_ts_config", "cfgowner", "oid"},
{"pg_catalog", "pg_ts_config", "cfgparser", "oid"},
{"pg_catalog", "pg_ts_config", "oid", "oid"},
{"pg_catalog", "pg_ts_config_map", "mapcfg", "oid"},
{"pg_catalog", "pg_ts_config_map", "mapdict", "oid"},
{"pg_catalog", "pg_ts_config_map", "mapseqno", "int4"},
{"pg_catalog", "pg_ts_config_map", "maptokentype", "int4"},
{"pg_catalog", "pg_ts_dict", "dictinitoption", "text"},
{"pg_catalog", "pg_ts_dict", "dictname", "name"},
{"pg_catalog", "pg_ts_dict", "dictnamespace", "oid"},
{"pg_catalog", "pg_ts_dict", "dictowner", "oid"},
{"pg_catalog", "pg_ts_dict", "dicttemplate", "oid"},
{"pg_catalog", "pg_ts_dict", "oid", "oid"},
{"pg_catalog", "pg_ts_parser", "oid", "oid"},
{"pg_catalog", "pg_ts_parser", "prsend", "regproc"},
{"pg_catalog", "pg_ts_parser", "prsheadline", "regproc"},
{"pg_catalog", "pg_ts_parser", "prslextype", "regproc"},
{"pg_catalog", "pg_ts_parser", "prsname", "name"},
{"pg_catalog", "pg_ts_parser", "prsnamespace", "oid"},
{"pg_catalog", "pg_ts_parser", "prsstart", "regproc"},
{"pg_catalog", "pg_ts_parser", "prstoken", "regproc"},
{"pg_catalog", "pg_ts_template", "oid", "oid"},
{"pg_catalog", "pg_ts_template", "tmplinit", "regproc"},
{"pg_catalog", "pg_ts_template", "tmpllexize", "regproc"},
{"pg_catalog", "pg_ts_template", "tmplname", "name"},
{"pg_catalog", "pg_ts_template", "tmplnamespace", "oid"},
{"pg_catalog", "pg_type", "oid", "oid"},
{"pg_catalog", "pg_type", "typacl", "_aclitem"},
{"pg_catalog", "pg_type", "typalign", "char"},
{"pg_catalog", "pg_type", "typanalyze", "regproc"},
{"pg_catalog", "pg_type", "typarray", "oid"},
{"pg_catalog", "pg_type", "typbasetype", "oid"},
{"pg_catalog", "pg_type", "typbyval", "bool"},
{"pg_catalog", "pg_type", "typcategory", "char"},
{"pg_catalog", "pg_type", "typcollation", "oid"},
{"pg_catalog", "pg_type", "typdefault", "text"},
{"pg_catalog", "pg_type", "typdefaultbin", "pg_node_tree"},
{"pg_catalog", "pg_type", "typdelim", "char"},
{"pg_catalog", "pg_type", "typelem", "oid"},
{"pg_catalog", "pg_type", "typinput", "regproc"},
{"pg_catalog", "pg_type", "typisdefined", "bool"},
{"pg_catalog", "pg_type", "typispreferred", "bool"},
{"pg_catalog", "pg_type", "typlen", "int2"},
{"pg_catalog", "pg_type", "typmodin", "regproc"},
{"pg_catalog", "pg_type", "typmodout", "regproc"},
{"pg_catalog", "pg_type", "typname", "name"},
{"pg_catalog", "pg_type", "typnamespace", "oid"},
{"pg_catalog", "pg_type", "typndims", "int4"},
{"pg_catalog", "pg_type", "typnotnull", "bool"},
{"pg_catalog", "pg_type", "typoutput", "regproc"},
{"pg_catalog", "pg_type", "typowner", "oid"},
{"pg_catalog", "pg_type", "typreceive", "regproc"},
{"pg_catalog", "pg_type", "typrelid", "oid"},
{"pg_catalog", "pg_type", "typsend", "regproc"},
{"pg_catalog", "pg_type", "typstorage", "char"},
{"pg_catalog", "pg_type", "typsubscript", "regproc"},
{"pg_catalog", "pg_type", "typtype", "char"},
{"pg_catalog", "pg_type", "typtypmod", "int4"},
{"pg_catalog", "pg_user", "passwd", "text"},
{"pg_catalog", "pg_user", "usebypassrls", "bool"},
{"pg_catalog", "pg_user", "useconfig", "_text"},
{"pg_catalog", "pg_user", "usecreatedb", "bool"},
{"pg_catalog", "pg_user", "usename", "name"},
{"pg_catalog", "pg_user", "userepl", "bool"},
{"pg_catalog", "pg_user", "usesuper", "bool"},
{"pg_catalog", "pg_user", "usesysid", "oid"},
{"pg_catalog", "pg_user", "valuntil", "timestamptz"},
{"pg_catalog", "pg_user_mapping", "oid", "oid"},
{"pg_catalog", "pg_user_mapping", "umoptions", "_text"},
{"pg_catalog", "pg_user_mapping", "umserver", "oid"},
{"pg_catalog", "pg_user_mapping", "umuser", "oid"},
{"pg_catalog", "pg_user_mappings", "srvid", "oid"},
{"pg_catalog", "pg_user_mappings", "srvname", "name"},
{"pg_catalog", "pg_user_mappings", "umid", "oid"},
{"pg_catalog", "pg_user_mappings", "umoptions", "_text"},
{"pg_catalog", "pg_user_mappings", "umuser", "oid"},
{"pg_catalog", "pg_user_mappings", "usename", "name"},
{"pg_catalog", "pg_views", "definition", "text"},
{"pg_catalog", "pg_views", "schemaname", "name"},
{"pg_catalog", "pg_views", "viewname", "name"},
{"pg_catalog", "pg_views", "viewowner", "name"},
|