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
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
|
PGSQL-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Counter32, Gauge32, Integer32, enterprises
FROM SNMPv2-SMI
Float
FROM UCD-SNMP-MIB
DisplayString, DateAndTime, TruthValue
FROM SNMPv2-TC
rdbmsDbIndex
FROM RDBMS-MIB;
pgsql MODULE-IDENTITY
LAST-UPDATED "200708152113Z"
ORGANIZATION "pgsnmpd Development Team"
CONTACT-INFO
"E-mail: pgsnmpd-devel@pgfoundry.org
WWW: http://pgsnmpd.projects.postgresql.org"
DESCRIPTION
"MIB to describe a PostgreSQL database"
::= { enterprises 27645 }
pgsqlObjects OBJECT IDENTIFIER ::= { pgsql 1 }
pgsnmpdTables OBJECT IDENTIFIER ::= { pgsqlObjects 1 }
pgsqlCatalogTables OBJECT IDENTIFIER ::= { pgsqlObjects 2 }
----------------------------------------------------------------
pgsnmpdConnectionsTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsnmpdConnectionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of connections this SNMP agent has to PostgreSQL databases"
::= { pgsnmpdTables 1 }
pgsnmpdConnectionEntry OBJECT-TYPE
SYNTAX PgsnmpdConnectionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A single connection from pgsnmpd to a PostgreSQL database in a
database cluster"
INDEX { pgsnmpdConnID }
::= { pgsnmpdConnectionsTable 1 }
PgsnmpdConnectionEntry ::=
SEQUENCE {
pgsnmpdConnID INTEGER
pgsnmpdConnDesc DisplayString
pgsnmpdConnHost DisplayString
pgsnmpdConnPort DisplayString
pgsnmpdConnDbName DisplayString
}
pgsnmpdConnID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Identifying integer for this connection."
::= { pgsnmpdConnectionEntry 1 }
pgsnmpdConnDesc OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"User-generated decriptive string for this connection."
::= { pgsnmpdConnectionEntry 2 }
pgsnmpdConnHost OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Host name, IP address, or other identifier of the host PostgreSQL server for this connection"
::= { pgsnmpdConnectionEntry 3 }
pgsnmpdConnPort OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"PostgreSQL server port number for this connection"
::= { pgsnmpdConnectionEntry 4 }
pgsnmpdConnDbName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Name of the database this connection is connected to"
::= { pgsnmpdConnectionEntry 5 }
----------------------------------------------------------------
pgsqlPgAggregateTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgAggregateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_aggregate stores information about aggregate functions. An aggregate function is a function that operates on a set of values (typically one column from each row that matches a query condition) and returns a single value computed from all these values. Typical aggregate functions are sum, count, and max. Each entry in pg_aggregate is an extension of an entry in pg_proc. The pg_proc entry carries the aggregate's name, input and output data types, and other information that is similar to ordinary functions.The catalog pg_aggregate stores information about aggregate functions. An aggregate function is a function that operates on a set of values (typically one column from each row that matches a query condition) and returns a single value computed from all these values. Typical aggregate functions are sum, count, and max. Each entry in pg_aggregate is an extension of an entry in pg_proc. The pg_proc entry carries the aggregate's name, input and output data types, and other information that is similar to ordinary functions."
::= { pgsqlCatalogTables 1 }
pgsqlPgAggregateEntry OBJECT-TYPE
SYNTAX PgsqlPgAggregateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A pg_aggregate entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgAggregateEntryOID }
::= { pgsqlPgAggregateTable 1 }
PgsqlPgAggregateEntry ::=
SEQUENCE {
pgsqlPgAggregateEntryOID INTEGER,
pgsqlPgAggregateAggfnoid INTEGER,
pgsqlPgAggregateAggtransfn INTEGER,
pgsqlPgAggregateAggfinalfn INTEGER,
pgsqlPgAggregateAggsortop INTEGER,
pgsqlPgAggregateAggtranstype INTEGER,
pgsqlPgAggregateAgginitval DisplayString
}
pgsqlPgAggregateEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgAggregateEntry 1 }
pgsqlPgAggregateAggfnoid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"pg_proc OID of the aggregate function"
::= { pgsqlPgAggregateEntry 2 }
pgsqlPgAggregateAggtransfn OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Transition function"
::= { pgsqlPgAggregateEntry 3 }
pgsqlPgAggregateAggfinalfn OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Final function (zero if none)"
::= { pgsqlPgAggregateEntry 4 }
pgsqlPgAggregateAggsortop OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Associated sort operator (zero if none)"
::= { pgsqlPgAggregateEntry 5 }
pgsqlPgAggregateAggtranstype OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Data type of the aggregate function's internal transition (state) data"
::= { pgsqlPgAggregateEntry 6 }
pgsqlPgAggregateAgginitval OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The initial value of the transition state. This is a text field containing the initial value in its external string representation. If this field is NULL, the transition state value starts out NULL"
::= { pgsqlPgAggregateEntry 7 }
---------------------------------------
pgsqlPgAmTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgAmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_am stores information about index access methods. There is one row for each index access method supported by the system."
::= { pgsqlCatalogTables 2 }
pgsqlPgAmEntry OBJECT-TYPE
SYNTAX PgsqlPgAmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An access method"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgAmEntryOID }
::= { pgsqlPgAmTable 1 }
PgsqlPgAmEntry ::=
SEQUENCE {
pgsqlPgAmEntryOID INTEGER,
pgsqlPgAmAmname DisplayString,
pgsqlPgAmAmstrategies INTEGER,
pgsqlPgAmAmsupport INTEGER,
pgsqlPgAmAmorderstrategy INTEGER,
pgsqlPgAmAmcanunique TruthValue,
pgsqlPgAmAmcanmulticol TruthValue,
pgsqlPgAmAmoptionalkey TruthValue,
pgsqlPgAmAmindexnulls TruthValue,
pgsqlPgAmAmstorage TruthValue,
pgsqlPgAmAmclusterable TruthValue,
pgsqlPgAmAminsert INTEGER,
pgsqlPgAmAmbeginscan INTEGER,
pgsqlPgAmAmgettuple INTEGER,
pgsqlPgAmAmgetmulti INTEGER,
pgsqlPgAmAmrescan INTEGER,
pgsqlPgAmAmendscan INTEGER,
pgsqlPgAmAmmarkpos INTEGER,
pgsqlPgAmAmrestrpos INTEGER,
pgsqlPgAmAmbuild INTEGER,
pgsqlPgAmAmbulkdelete INTEGER,
pgsqlPgAmAmvacuumcleanup INTEGER,
pgsqlPgAmAmcostestimate INTEGER,
pgsqlPgAmAmoptions INTEGER
}
pgsqlPgAmEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgAmEntry 1 }
pgsqlPgAmAmname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the access method"
::= { pgsqlPgAmEntry 2 }
pgsqlPgAmAmstrategies OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of operator strategies for this access method"
::= { pgsqlPgAmEntry 3 }
pgsqlPgAmAmsupport OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of support routines for this access method"
::= { pgsqlPgAmEntry 4 }
pgsqlPgAmAmorderstrategy OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Zero if the index offers no sort order, otherwise the strategy number of the strategy operator that describes the sort order"
::= { pgsqlPgAmEntry 5 }
pgsqlPgAmAmcanunique OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Does the access method support unique indexes?"
::= { pgsqlPgAmEntry 6 }
pgsqlPgAmAmcanmulticol OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Does the access method support multicolumn indexes?"
::= { pgsqlPgAmEntry 7 }
pgsqlPgAmAmoptionalkey OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Does the access method support a scan without any constraint for the first index column?"
::= { pgsqlPgAmEntry 8 }
pgsqlPgAmAmindexnulls OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Does the access method support null index entries?"
::= { pgsqlPgAmEntry 9 }
pgsqlPgAmAmstorage OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Can index storage data type differ from column data type?"
::= { pgsqlPgAmEntry 10 }
pgsqlPgAmAmclusterable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Can an index of this type be clustered on?"
::= { pgsqlPgAmEntry 11 }
pgsqlPgAmAminsert OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Insert this tuple"
::= { pgsqlPgAmEntry 12 }
pgsqlPgAmAmbeginscan OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Start new scan"
::= { pgsqlPgAmEntry 13 }
pgsqlPgAmAmgettuple OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Next valid tuple"
::= { pgsqlPgAmEntry 14 }
pgsqlPgAmAmgetmulti OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Fetch multiple tuples"
::= { pgsqlPgAmEntry 15 }
pgsqlPgAmAmrescan OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Restart this scan"
::= { pgsqlPgAmEntry 16 }
pgsqlPgAmAmendscan OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"End this scan"
::= { pgsqlPgAmEntry 17 }
pgsqlPgAmAmmarkpos OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Mark current scan position"
::= { pgsqlPgAmEntry 18 }
pgsqlPgAmAmrestrpos OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Restore marked scan position"
::= { pgsqlPgAmEntry 19 }
pgsqlPgAmAmbuild OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Build new index"
::= { pgsqlPgAmEntry 20 }
pgsqlPgAmAmbulkdelete OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bulk-delete function"
::= { pgsqlPgAmEntry 21 }
pgsqlPgAmAmvacuumcleanup OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Post- VACUUM cleanup function"
::= { pgsqlPgAmEntry 22 }
pgsqlPgAmAmcostestimate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Function to estimate cost of an index scan"
::= { pgsqlPgAmEntry 23 }
pgsqlPgAmAmoptions OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Function to parse and validate reloptions for an index"
::= { pgsqlPgAmEntry 24 }
---------------------------------------
pgsqlPgAmopTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgAmopEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_amop stores information about operators associated with index access method operator classes. There is one row for each operator that is a member of an operator class."
::= { pgsqlCatalogTables 3 }
pgsqlPgAmopEntry OBJECT-TYPE
SYNTAX PgsqlPgAmopEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_amop entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgAmopEntryOID }
::= { pgsqlPgAmopTable 1 }
PgsqlPgAmopEntry ::=
SEQUENCE {
pgsqlPgAmopEntryOID INTEGER,
pgsqlPgAmopAmopfamily INTEGER,
pgsqlPgAmopAmoplefttype INTEGER,
pgsqlPgAmopAmoprighttype INTEGER,
pgsqlPgAmopAmopstrategy INTEGER,
pgsqlPgAmopAmopreqcheck TruthValue,
pgsqlPgAmopAmopopr INTEGER,
pgsqlPgAmopAmopmethod INTEGER
}
pgsqlPgAmopEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgAmopEntry 1 }
pgsqlPgAmopAmopfamily OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operator family this entry is for"
::= { pgsqlPgAmopEntry 2 }
pgsqlPgAmopAmoplefttype OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Left-hand input data type of operator"
::= { pgsqlPgAmopEntry 3 }
pgsqlPgAmopAmoprighttype OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Right-hand input data type of operator"
::= { pgsqlPgAmopEntry 4 }
pgsqlPgAmopAmopstrategy OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operator strategy number"
::= { pgsqlPgAmopEntry 5 }
pgsqlPgAmopAmopreqcheck OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index hit must be rechecked"
::= { pgsqlPgAmopEntry 6 }
pgsqlPgAmopAmopopr OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the operator"
::= { pgsqlPgAmopEntry 7 }
pgsqlPgAmopAmopmethod OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index access method operator family is for"
::= { pgsqlPgAmopEntry 8 }
---------------------------------------
pgsqlPgAmprocTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgAmprocEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_amproc stores information about support procedures associated with index access method operator classes. There is one row for each support procedure belonging to an operator class."
::= { pgsqlCatalogTables 4 }
pgsqlPgAmprocEntry OBJECT-TYPE
SYNTAX PgsqlPgAmprocEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_amproc entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgAmprocEntryOID }
::= { pgsqlPgAmprocTable 1 }
PgsqlPgAmprocEntry ::=
SEQUENCE {
pgsqlPgAmprocEntryOID INTEGER,
pgsqlPgAmprocAmopclaid INTEGER,
pgsqlPgAmprocAmprocsubtype INTEGER,
pgsqlPgAmprocAmprocnum INTEGER,
pgsqlPgAmprocAmproc INTEGER
}
pgsqlPgAmprocEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgAmprocEntry 1 }
pgsqlPgAmprocAmopclaid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index operator class this entry is for"
::= { pgsqlPgAmprocEntry 2 }
pgsqlPgAmprocAmprocsubtype OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Subtype, if cross-type routine, else zero"
::= { pgsqlPgAmprocEntry 3 }
pgsqlPgAmprocAmprocnum OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Support procedure number"
::= { pgsqlPgAmprocEntry 4 }
pgsqlPgAmprocAmproc OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the procedure"
::= { pgsqlPgAmprocEntry 5 }
---------------------------------------
pgsqlPgAttrdefTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgAttrdefEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_attrdef stores column default values. The main information about columns is stored in pg_attribute (see below). Only columns that explicitly specify a default value (when the table is created or the column is added) will have an entry here."
::= { pgsqlCatalogTables 5 }
pgsqlPgAttrdefEntry OBJECT-TYPE
SYNTAX PgsqlPgAttrdefEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_attrdef entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgAttrdefEntryOID }
::= { pgsqlPgAttrdefTable 1 }
PgsqlPgAttrdefEntry ::=
SEQUENCE {
pgsqlPgAttrdefEntryOID INTEGER,
pgsqlPgAttrdefAdrelid INTEGER,
pgsqlPgAttrdefAdnum INTEGER,
pgsqlPgAttrdefAdbin DisplayString,
pgsqlPgAttrdefAdsrc DisplayString
}
pgsqlPgAttrdefEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgAttrdefEntry 1 }
pgsqlPgAttrdefAdrelid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table this column belongs to"
::= { pgsqlPgAttrdefEntry 2 }
pgsqlPgAttrdefAdnum OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the column"
::= { pgsqlPgAttrdefEntry 3 }
pgsqlPgAttrdefAdbin OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The internal representation of the column default value"
::= { pgsqlPgAttrdefEntry 4 }
pgsqlPgAttrdefAdsrc OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A human-readable representation of the default value"
::= { pgsqlPgAttrdefEntry 5 }
---------------------------------------
pgsqlPgAttributeTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgAttributeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_attribute stores information about table columns. There will be exactly one pg_attribute row for every column in every table in the database. (There will also be attribute entries for indexes, and indeed all objects that have pg_class entries.) The term attribute is equivalent to column and is used for historical reasons."
::= { pgsqlCatalogTables 6 }
pgsqlPgAttributeEntry OBJECT-TYPE
SYNTAX PgsqlPgAttributeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_attribute entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgAttributeEntryOID }
::= { pgsqlPgAttributeTable 1 }
PgsqlPgAttributeEntry ::=
SEQUENCE {
pgsqlPgAttributeEntryOID INTEGER,
pgsqlPgAttributeAttrelid INTEGER,
pgsqlPgAttributeAttname DisplayString,
pgsqlPgAttributeAtttypid INTEGER,
pgsqlPgAttributeAttstattarget INTEGER,
pgsqlPgAttributeAttlen INTEGER,
pgsqlPgAttributeAttnum INTEGER,
pgsqlPgAttributeAttndims INTEGER,
pgsqlPgAttributeAttcacheoff INTEGER,
pgsqlPgAttributeAtttypmod INTEGER,
pgsqlPgAttributeAttbyval TruthValue,
pgsqlPgAttributeAttstorage DisplayString,
pgsqlPgAttributeAttalign DisplayString,
pgsqlPgAttributeAttnotnull TruthValue,
pgsqlPgAttributeAtthasdef TruthValue,
pgsqlPgAttributeAttisdropped TruthValue,
pgsqlPgAttributeAttislocal INTEGER,
pgsqlPgAttributeAttinhcount INTEGER
}
pgsqlPgAttributeEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgAttributeEntry 1 }
pgsqlPgAttributeAttrelid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table this column belongs to"
::= { pgsqlPgAttributeEntry 2 }
pgsqlPgAttributeAttname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The column name"
::= { pgsqlPgAttributeEntry 3 }
pgsqlPgAttributeAtttypid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The data type of this column"
::= { pgsqlPgAttributeEntry 4 }
pgsqlPgAttributeAttstattarget OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"attstattarget controls the level of detail of statistics accumulated for this column by ANALYZE . A zero value indicates that no statistics should be collected. A negative value says to use the system default statistics target. The exact meaning of positive values is data type-dependent. For scalar data types, attstattarget is both the target number of "
::= { pgsqlPgAttributeEntry 5 }
pgsqlPgAttributeAttlen OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A copy of pg_type.typlen of this column's type"
::= { pgsqlPgAttributeEntry 6 }
pgsqlPgAttributeAttnum OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the column. Ordinary columns are numbered from 1 up. System columns, such as oid , have (arbitrary) negative numbers"
::= { pgsqlPgAttributeEntry 7 }
pgsqlPgAttributeAttndims OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of dimensions, if the column is an array type; otherwise 0. (Presently, the number of dimensions of an array is not enforced, so any nonzero value effectively means "
::= { pgsqlPgAttributeEntry 8 }
pgsqlPgAttributeAttcacheoff OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Always -1 in storage, but when loaded into a row descriptor in memory this may be updated to cache the offset of the attribute within the row"
::= { pgsqlPgAttributeEntry 9 }
pgsqlPgAttributeAtttypmod OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"atttypmod records type-specific data supplied at table creation time (for example, the maximum length of a varchar column). It is passed to type-specific input functions and length coercion functions. The value will generally be -1 for types that do not need atttypmod"
::= { pgsqlPgAttributeEntry 10 }
pgsqlPgAttributeAttbyval OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A copy of pg_type.typbyval of this column's type"
::= { pgsqlPgAttributeEntry 11 }
pgsqlPgAttributeAttstorage OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Normally a copy of pg_type.typstorage of this column's type. For TOAST-able data types, this can be altered after column creation to control storage policy"
::= { pgsqlPgAttributeEntry 12 }
pgsqlPgAttributeAttalign OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A copy of pg_type.typalign of this column's type"
::= { pgsqlPgAttributeEntry 13 }
pgsqlPgAttributeAttnotnull OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This represents a not-null constraint. It is possible to change this column to enable or disable the constraint"
::= { pgsqlPgAttributeEntry 14 }
pgsqlPgAttributeAtthasdef OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This column has a default value, in which case there will be a corresponding entry in the pg_attrdef catalog that actually defines the value"
::= { pgsqlPgAttributeEntry 15 }
pgsqlPgAttributeAttisdropped OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This column has been dropped and is no longer valid. A dropped column is still physically present in the table, but is ignored by the parser and so cannot be accessed via SQL"
::= { pgsqlPgAttributeEntry 16 }
pgsqlPgAttributeAttislocal OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This column is defined locally in the relation. Note that a column may be locally defined and inherited simultaneously"
::= { pgsqlPgAttributeEntry 17 }
pgsqlPgAttributeAttinhcount OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of direct ancestors this column has. A column with a nonzero number of ancestors cannot be dropped nor renamed"
::= { pgsqlPgAttributeEntry 18 }
---------------------------------------
-- TODO: Because pg_authid is shared across databases, find a way to ensure I cover all configured connections exactly once
pgsqlPgAuthMembersTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgAuthMembersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_auth_members shows the membership relations between roles. Any non-circular set of relationships is allowed. Because user identities are cluster-wide, pg_auth_members is shared across all databases of a cluster: there is only one copy of pg_auth_members per cluster, not one per database."
::= { pgsqlCatalogTables 8 }
pgsqlPgAuthMembersEntry OBJECT-TYPE
SYNTAX PgsqlPgAuthMembersEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_auth_members entry"
INDEX { pgsnmpdConnID, pgsqlPgAuthMembersEntryOID }
::= { pgsqlPgAuthMembersTable 1 }
PgsqlPgAuthMembersEntry ::=
SEQUENCE {
pgsqlPgAuthMembersEntryOID INTEGER,
pgsqlPgAuthMembersRoleid INTEGER,
pgsqlPgAuthMembersMember INTEGER,
pgsqlPgAuthMembersGrantor INTEGER,
pgsqlPgAuthMembersAdminOption TruthValue
}
pgsqlPgAuthMembersEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgAuthMembersEntry 1 }
pgsqlPgAuthMembersRoleid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID of a role that has a member"
::= { pgsqlPgAuthMembersEntry 2 }
pgsqlPgAuthMembersMember OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID of a role that is a member of roleid"
::= { pgsqlPgAuthMembersEntry 3 }
pgsqlPgAuthMembersGrantor OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID of the role that granted this membership"
::= { pgsqlPgAuthMembersEntry 4 }
pgsqlPgAuthMembersAdminOption OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if member may grant membership in roleid to others"
::= { pgsqlPgAuthMembersEntry 5 }
---------------------------------------
-- TODO: Because pg_authid is shared across databases, find a way to ensure I cover all configured connections exactly once
pgsqlPgAuthidTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgAuthidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_authid contains information about database authorization identifiers (roles). A role subsumes the concepts of 'users' and 'groups'. A user is essentially just a role with the rolcanlogin flag set. Any role (with or without rolcanlogin) may have other roles as members; see pg_auth_members. Since this catalog contains passwords, it must not be publicly readable. pg_roles is a publicly readable view on pg_authid that blanks out the password field. Because user identities are cluster-wide, pg_authid is shared across all databases of a cluster: there is only one copy of pg_authid per cluster, not one per database."
::= { pgsqlCatalogTables 7 }
pgsqlPgAuthidEntry OBJECT-TYPE
SYNTAX PgsqlPgAuthidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_authid entry"
INDEX { pgsnmpdConnID, pgsqlPgAuthidEntryOID }
::= { pgsqlPgAuthidTable 1 }
PgsqlPgAuthidEntry ::=
SEQUENCE {
pgsqlPgAuthidEntryOID INTEGER,
pgsqlPgAuthidRolname INTEGER,
pgsqlPgAuthidRolsuper TruthValue,
pgsqlPgAuthidRolinherit TruthValue,
pgsqlPgAuthidRolcreaterole TruthValue,
pgsqlPgAuthidRolcreatedb TruthValue,
pgsqlPgAuthidRolcatupdate TruthValue,
pgsqlPgAuthidRolcanlogin TruthValue,
pgsqlPgAuthidRolconnlimit INTEGER,
pgsqlPgAuthidRolpassword DisplayString,
pgsqlPgAuthidRolvaliduntil DateAndTime,
pgsqlPgAuthidRolconfig DisplayString
}
pgsqlPgAuthidEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgAuthidEntry 1 }
pgsqlPgAuthidRolname OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Role name"
::= { pgsqlPgAuthidEntry 2 }
pgsqlPgAuthidRolsuper OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Role has superuser privileges"
::= { pgsqlPgAuthidEntry 3 }
pgsqlPgAuthidRolinherit OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Role automatically inherits privileges of roles it is a member of"
::= { pgsqlPgAuthidEntry 4 }
pgsqlPgAuthidRolcreaterole OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Role may create more roles"
::= { pgsqlPgAuthidEntry 5 }
pgsqlPgAuthidRolcreatedb OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Role may create databases"
::= { pgsqlPgAuthidEntry 6 }
pgsqlPgAuthidRolcatupdate OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Role may update system catalogs directly. (Even a superuser may not do this unless this column is true)"
::= { pgsqlPgAuthidEntry 7 }
pgsqlPgAuthidRolcanlogin OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Role may log in. That is, this role can be given as the initial session authorization identifier"
::= { pgsqlPgAuthidEntry 8 }
pgsqlPgAuthidRolconnlimit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For roles that can log in, this sets maximum number of concurrent connections this role can make. -1 means no limit"
::= { pgsqlPgAuthidEntry 9 }
pgsqlPgAuthidRolpassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Password (possibly encrypted); NULL if none"
::= { pgsqlPgAuthidEntry 10 }
pgsqlPgAuthidRolvaliduntil OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Password expiry time (only used for password authentication); NULL if no expiration"
::= { pgsqlPgAuthidEntry 11 }
pgsqlPgAuthidRolconfig OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session defaults for run-time configuration variables"
::= { pgsqlPgAuthidEntry 12 }
---------------------------------------
pgsqlPgAutovacuumTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgAutovacuumEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_autovacuum stores optional per-relation configuration parameters for the autovacuum daemon. If there is an entry here for a particular relation, the given parameters will be used for autovacuuming that table. If no entry is present, the system-wide defaults will be used."
::= { pgsqlCatalogTables 9 }
pgsqlPgAutovacuumEntry OBJECT-TYPE
SYNTAX PgsqlPgAutovacuumEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Autovacuum settings for a relation"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgAutovacuumEntryOID }
::= { pgsqlPgAutovacuumTable 1 }
PgsqlPgAutovacuumEntry ::=
SEQUENCE {
pgsqlPgAutovacuumEntryOID INTEGER,
pgsqlPgAutovacuumVacrelid INTEGER,
pgsqlPgAutovacuumEnabled TruthValue,
pgsqlPgAutovacuumVacBaseThresh INTEGER,
pgsqlPgAutovacuumVacScaleFactor Float,
pgsqlPgAutovacuumAnlBaseThresh INTEGER,
pgsqlPgAutovacuumAnlScaleFactor Float,
pgsqlPgAutovacuumVacCostDelay INTEGER,
pgsqlPgAutovacuumVacCostLimit INTEGER,
pgsqlPgAutovacuumFreezeMinAge INTEGER,
pgsqlPgAutovacuumFreezeMaxAge INTEGER
}
pgsqlPgAutovacuumEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgAutovacuumEntry 1 }
pgsqlPgAutovacuumVacrelid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table this entry is for"
::= { pgsqlPgAutovacuumEntry 2 }
pgsqlPgAutovacuumEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If false, this table is never autovacuumed"
::= { pgsqlPgAutovacuumEntry 3 }
pgsqlPgAutovacuumVacBaseThresh OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum number of modified tuples before vacuum"
::= { pgsqlPgAutovacuumEntry 4 }
pgsqlPgAutovacuumVacScaleFactor OBJECT-TYPE
SYNTAX Float
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Multiplier for reltuples to add to vac_base_thresh"
::= { pgsqlPgAutovacuumEntry 5 }
pgsqlPgAutovacuumAnlBaseThresh OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Minimum number of modified tuples before analyze"
::= { pgsqlPgAutovacuumEntry 6 }
pgsqlPgAutovacuumAnlScaleFactor OBJECT-TYPE
SYNTAX Float
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Multiplier for reltuples to add to anl_base_thresh"
::= { pgsqlPgAutovacuumEntry 7 }
pgsqlPgAutovacuumVacCostDelay OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Custom vacuum_cost_delay parameter"
::= { pgsqlPgAutovacuumEntry 8 }
pgsqlPgAutovacuumVacCostLimit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Custom vacuum_cost_limit parameter"
::= { pgsqlPgAutovacuumEntry 9 }
pgsqlPgAutovacuumFreezeMinAge OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Custom vacuum_freeze_min_age parameter"
::= { pgsqlPgAutovacuumEntry 10 }
pgsqlPgAutovacuumFreezeMaxAge OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Custom autovacuum_freeze_max_age parameter"
::= { pgsqlPgAutovacuumEntry 11 }
---------------------------------------
pgsqlPgCastTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgCastEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_cast stores data type conversion paths, both built-in paths and those defined with CREATE CAST."
::= { pgsqlCatalogTables 10 }
pgsqlPgCastEntry OBJECT-TYPE
SYNTAX PgsqlPgCastEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_cast entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgCastEntryOID }
::= { pgsqlPgCastTable 1 }
PgsqlPgCastEntry ::=
SEQUENCE {
pgsqlPgCastEntryOID INTEGER,
pgsqlPgCastCastsource INTEGER,
pgsqlPgCastCasttarget INTEGER,
pgsqlPgCastCastfunc INTEGER,
pgsqlPgCastCastcontext DisplayString
}
pgsqlPgCastEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgCastEntry 1 }
pgsqlPgCastCastsource OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the source data type"
::= { pgsqlPgCastEntry 2 }
pgsqlPgCastCasttarget OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the target data type"
::= { pgsqlPgCastEntry 3 }
pgsqlPgCastCastfunc OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the function to use to perform this cast. Zero is stored if the data types are binary compatible (that is, no run-time operation is needed to perform the cast)"
::= { pgsqlPgCastEntry 4 }
pgsqlPgCastCastcontext OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates what contexts the cast may be invoked in. e means only as an explicit cast (using CAST or :: syntax). a means implicitly in assignment to a target column, as well as explicitly. i means implicitly in expressions, as well as the other cases"
::= { pgsqlPgCastEntry 5 }
---------------------------------------
pgsqlPgClassTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgClassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_class catalogs tables and most everything else that has columns or is otherwise similar to a table. This includes indexes (but see also pg_index), sequences, views, composite types, and TOAST tables; see relkind. Below, when we mean all of these kinds of objects we speak of 'relations'. Not all columns are meaningful for all relation types."
::= { pgsqlCatalogTables 11 }
pgsqlPgClassEntry OBJECT-TYPE
SYNTAX PgsqlPgClassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_class entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgClassEntryOID }
::= { pgsqlPgClassTable 1 }
PgsqlPgClassEntry ::=
SEQUENCE {
pgsqlPgClassEntryOID INTEGER,
pgsqlPgClassRelname DisplayString,
pgsqlPgClassRelnamespace INTEGER,
pgsqlPgClassReltype INTEGER,
pgsqlPgClassRelowner INTEGER,
pgsqlPgClassRelam INTEGER,
pgsqlPgClassRelfilenode INTEGER,
pgsqlPgClassReltablespace INTEGER,
pgsqlPgClassRelpages INTEGER,
pgsqlPgClassReltuples Float,
pgsqlPgClassReltoastrelid INTEGER,
pgsqlPgClassReltoastidxid INTEGER,
pgsqlPgClassRelhasindex TruthValue,
pgsqlPgClassRelisshared TruthValue,
pgsqlPgClassRelkind DisplayString,
pgsqlPgClassRelnatts INTEGER,
pgsqlPgClassRelchecks INTEGER,
pgsqlPgClassReltriggers INTEGER,
pgsqlPgClassRelukeys INTEGER,
pgsqlPgClassRelfkeys INTEGER,
pgsqlPgClassRelrefs INTEGER,
pgsqlPgClassRelhasoids TruthValue,
pgsqlPgClassRelhaspkey TruthValue,
pgsqlPgClassRelhasrules TruthValue,
pgsqlPgClassRelhassubclass TruthValue,
pgsqlPgClassRelfrozenxid INTEGER,
pgsqlPgClassRelacl DisplayString,
pgsqlPgClassReloptions DisplayString
}
pgsqlPgClassEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgClassEntry 1 }
pgsqlPgClassRelname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the table, index, view, etc."
::= { pgsqlPgClassEntry 2 }
pgsqlPgClassRelnamespace OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the namespace that contains this relation"
::= { pgsqlPgClassEntry 3 }
pgsqlPgClassReltype OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the data type that corresponds to this table's row type, if any (zero for indexes, which have no pg_type entry)"
::= { pgsqlPgClassEntry 4 }
pgsqlPgClassRelowner OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Owner of the relation"
::= { pgsqlPgClassEntry 5 }
pgsqlPgClassRelam OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this is an index, the access method used (B-tree, hash, etc.)"
::= { pgsqlPgClassEntry 6 }
pgsqlPgClassRelfilenode OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the on-disk file of this relation; 0 if none"
::= { pgsqlPgClassEntry 7 }
pgsqlPgClassReltablespace OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The tablespace in which this relation is stored. If zero, the database's default tablespace is implied. (Not meaningful if the relation has no on-disk file.)"
::= { pgsqlPgClassEntry 8 }
pgsqlPgClassRelpages OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Size of the on-disk representation of this table in pages (of size BLCKSZ ). This is only an estimate used by the planner. It is updated by VACUUM , ANALYZE , and a few DDL commands such as CREATE INDEX"
::= { pgsqlPgClassEntry 9 }
pgsqlPgClassReltuples OBJECT-TYPE
SYNTAX Float
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of rows in the table. This is only an estimate used by the planner. It is updated by VACUUM , ANALYZE , and a few DDL commands such as CREATE INDEX"
::= { pgsqlPgClassEntry 10 }
pgsqlPgClassReltoastrelid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the TOAST table associated with this table, 0 if none. The TOAST table stores large attributes "
::= { pgsqlPgClassEntry 11 }
pgsqlPgClassReltoastidxid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For a TOAST table, the OID of its index. 0 if not a TOAST table"
::= { pgsqlPgClassEntry 12 }
pgsqlPgClassRelhasindex OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if this is a table and it has (or recently had) any indexes. This is set by CREATE INDEX , but not cleared immediately by DROP INDEX . VACUUM clears relhasindex if it finds the table has no indexes"
::= { pgsqlPgClassEntry 13 }
pgsqlPgClassRelisshared OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if this table is shared across all databases in the cluster. Only certain system catalogs (such as pg_database ) are shared"
::= { pgsqlPgClassEntry 14 }
pgsqlPgClassRelkind OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"r = ordinary table, i = index, S = sequence, v = view, c = composite type, t = TOAST table"
::= { pgsqlPgClassEntry 15 }
pgsqlPgClassRelnatts OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of user columns in the relation (system columns not counted). There must be this many corresponding entries in pg_attribute . See also pg_attribute.attnum"
::= { pgsqlPgClassEntry 16 }
pgsqlPgClassRelchecks OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of check constraints on the table; see pg_constraint catalog"
::= { pgsqlPgClassEntry 17 }
pgsqlPgClassReltriggers OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of triggers on the table; see pg_trigger catalog"
::= { pgsqlPgClassEntry 18 }
pgsqlPgClassRelukeys OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unused ( not the number of unique keys)"
::= { pgsqlPgClassEntry 19 }
pgsqlPgClassRelfkeys OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unused ( not the number of foreign keys on the table)"
::= { pgsqlPgClassEntry 20 }
pgsqlPgClassRelrefs OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unused"
::= { pgsqlPgClassEntry 21 }
pgsqlPgClassRelhasoids OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if we generate an OID for each row of the relation"
::= { pgsqlPgClassEntry 22 }
pgsqlPgClassRelhaspkey OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if the table has (or once had) a primary key"
::= { pgsqlPgClassEntry 23 }
pgsqlPgClassRelhasrules OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if table has rules; see pg_rewrite catalog"
::= { pgsqlPgClassEntry 24 }
pgsqlPgClassRelhassubclass OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if table has (or once had) any inheritance children"
::= { pgsqlPgClassEntry 25 }
pgsqlPgClassRelfrozenxid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"All transaction IDs before this one have been replaced with a permanent ( "
::= { pgsqlPgClassEntry 26 }
pgsqlPgClassRelacl OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Access privileges; see GRANT and REVOKE for details"
::= { pgsqlPgClassEntry 27 }
pgsqlPgClassReloptions OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Access-method-specific options, as "
::= { pgsqlPgClassEntry 28 }
---------------------------------------
pgsqlPgConstraintTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgConstraintEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_constraint stores check, primary key, unique, and foreign key constraints on tables. (Column constraints are not treated specially. Every column constraint is equivalent to some table constraint.) Not-null constraints are represented in the pg_attribute catalog."
::= { pgsqlCatalogTables 12 }
pgsqlPgConstraintEntry OBJECT-TYPE
SYNTAX PgsqlPgConstraintEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A constraint entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgConstraintEntryOID }
::= { pgsqlPgConstraintTable 1 }
PgsqlPgConstraintEntry ::=
SEQUENCE {
pgsqlPgConstraintEntryOID INTEGER,
pgsqlPgConstraintConname DisplayString,
pgsqlPgConstraintConnamespace INTEGER,
pgsqlPgConstraintContype DisplayString,
pgsqlPgConstraintCondeferrable TruthValue,
pgsqlPgConstraintCondeferred TruthValue,
pgsqlPgConstraintConrelid INTEGER,
pgsqlPgConstraintContypid INTEGER,
pgsqlPgConstraintConfrelid INTEGER,
pgsqlPgConstraintConfupdtype DisplayString,
pgsqlPgConstraintConfdeltype DisplayString,
pgsqlPgConstraintConfmatchtype DisplayString,
pgsqlPgConstraintConkey DisplayString,
pgsqlPgConstraintConfkey DisplayString,
pgsqlPgConstraintConbin DisplayString,
pgsqlPgConstraintConsrc DisplayString
}
pgsqlPgConstraintEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgConstraintEntry 1 }
pgsqlPgConstraintConname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Constraint name (not necessarily unique!)"
::= { pgsqlPgConstraintEntry 2 }
pgsqlPgConstraintConnamespace OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the namespace that contains this constraint"
::= { pgsqlPgConstraintEntry 3 }
pgsqlPgConstraintContype OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"c = check constraint, f = foreign key constraint, p = primary key constraint, u = unique constraint"
::= { pgsqlPgConstraintEntry 4 }
pgsqlPgConstraintCondeferrable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Is the constraint deferrable?"
::= { pgsqlPgConstraintEntry 5 }
pgsqlPgConstraintCondeferred OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Is the constraint deferred by default?"
::= { pgsqlPgConstraintEntry 6 }
pgsqlPgConstraintConrelid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table this constraint is on; 0 if not a table constraint"
::= { pgsqlPgConstraintEntry 7 }
pgsqlPgConstraintContypid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The domain this constraint is on; 0 if not a domain constraint"
::= { pgsqlPgConstraintEntry 8 }
pgsqlPgConstraintConfrelid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If a foreign key, the referenced table; else 0"
::= { pgsqlPgConstraintEntry 9 }
pgsqlPgConstraintConfupdtype OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Foreign key update action code"
::= { pgsqlPgConstraintEntry 10 }
pgsqlPgConstraintConfdeltype OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Foreign key deletion action code"
::= { pgsqlPgConstraintEntry 11 }
pgsqlPgConstraintConfmatchtype OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Foreign key match type"
::= { pgsqlPgConstraintEntry 12 }
pgsqlPgConstraintConkey OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If a table constraint, list of columns which the constraint constrains"
::= { pgsqlPgConstraintEntry 13 }
pgsqlPgConstraintConfkey OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If a foreign key, list of the referenced columns"
::= { pgsqlPgConstraintEntry 14 }
pgsqlPgConstraintConbin OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If a check constraint, an internal representation of the expression"
::= { pgsqlPgConstraintEntry 15 }
pgsqlPgConstraintConsrc OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If a check constraint, a human-readable representation of the expression"
::= { pgsqlPgConstraintEntry 16 }
---------------------------------------
pgsqlPgConversionTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgConversionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_conversion describes the available encoding conversion procedures."
::= { pgsqlCatalogTables 13 }
pgsqlPgConversionEntry OBJECT-TYPE
SYNTAX PgsqlPgConversionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conversion entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgConversionEntryOID }
::= { pgsqlPgConversionTable 1 }
PgsqlPgConversionEntry ::=
SEQUENCE {
pgsqlPgConversionEntryOID INTEGER,
pgsqlPgConversionConname DisplayString,
pgsqlPgConversionConnamespace INTEGER,
pgsqlPgConversionConowner INTEGER,
pgsqlPgConversionConforencoding INTEGER,
pgsqlPgConversionContoencoding INTEGER,
pgsqlPgConversionConproc INTEGER,
pgsqlPgConversionCondefault TruthValue
}
pgsqlPgConversionEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgConversionEntry 1 }
pgsqlPgConversionConname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Conversion name (unique within a namespace)"
::= { pgsqlPgConversionEntry 2 }
pgsqlPgConversionConnamespace OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the namespace that contains this conversion"
::= { pgsqlPgConversionEntry 3 }
pgsqlPgConversionConowner OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Owner of the conversion"
::= { pgsqlPgConversionEntry 4 }
pgsqlPgConversionConforencoding OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Source encoding ID"
::= { pgsqlPgConversionEntry 5 }
pgsqlPgConversionContoencoding OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination encoding ID"
::= { pgsqlPgConversionEntry 6 }
pgsqlPgConversionConproc OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Conversion procedure"
::= { pgsqlPgConversionEntry 7 }
pgsqlPgConversionCondefault OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if this is the default conversion"
::= { pgsqlPgConversionEntry 8 }
---------------------------------------
-- TODO: Because pg_authid is shared across databases, find a way to ensure I cover all configured connections exactly once
pgsqlPgDatabaseTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgDatabaseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_database stores information about the available databases. Databases are created with the CREATE DATABASE command. Unlike most system catalogs, pg_database is shared across all databases of a cluster: there is only one copy of pg_database per cluster, not one per database."
::= { pgsqlCatalogTables 14 }
pgsqlPgDatabaseEntry OBJECT-TYPE
SYNTAX PgsqlPgDatabaseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A database"
INDEX { pgsnmpdConnID, pgsqlPgDatabaseEntryOID }
::= { pgsqlPgDatabaseTable 1 }
PgsqlPgDatabaseEntry ::=
SEQUENCE {
pgsqlPgDatabaseEntryOID INTEGER,
pgsqlPgDatabaseDatname DisplayString,
pgsqlPgDatabaseDatdba INTEGER,
pgsqlPgDatabaseEncoding INTEGER,
pgsqlPgDatabaseDatistemplate TruthValue,
pgsqlPgDatabaseDatallowconn TruthValue,
pgsqlPgDatabaseDatconnlimit INTEGER,
pgsqlPgDatabaseDatlastsysoid INTEGER,
pgsqlPgDatabaseDatfrozenxid INTEGER,
pgsqlPgDatabaseDattablespace INTEGER,
pgsqlPgDatabaseDatconfig DisplayString,
pgsqlPgDatabaseDatacl DisplayString
}
pgsqlPgDatabaseEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgDatabaseEntry 1 }
pgsqlPgDatabaseDatname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Database name"
::= { pgsqlPgDatabaseEntry 2 }
pgsqlPgDatabaseDatdba OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Owner of the database, usually the user who created it"
::= { pgsqlPgDatabaseEntry 3 }
pgsqlPgDatabaseEncoding OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Character encoding for this database ( pg_encoding_to_char() can translate this number to the encoding name)"
::= { pgsqlPgDatabaseEntry 4 }
pgsqlPgDatabaseDatistemplate OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If true then this database can be used in the TEMPLATE clause of CREATE DATABASE to create a new database as a clone of this one"
::= { pgsqlPgDatabaseEntry 5 }
pgsqlPgDatabaseDatallowconn OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If false then no one can connect to this database. This is used to protect the template0 database from being altered"
::= { pgsqlPgDatabaseEntry 6 }
pgsqlPgDatabaseDatconnlimit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sets maximum number of concurrent connections that can be made to this database. -1 means no limit"
::= { pgsqlPgDatabaseEntry 7 }
pgsqlPgDatabaseDatlastsysoid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last system OID in the database; useful particularly to pg_dump"
::= { pgsqlPgDatabaseEntry 8 }
pgsqlPgDatabaseDatfrozenxid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"All transaction IDs before this one have been replaced with a permanent ( "
::= { pgsqlPgDatabaseEntry 9 }
pgsqlPgDatabaseDattablespace OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The default tablespace for the database. Within this database, all tables for which pg_class . reltablespace is zero will be stored in this tablespace; in particular, all the non-shared system catalogs will be there"
::= { pgsqlPgDatabaseEntry 10 }
pgsqlPgDatabaseDatconfig OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session defaults for run-time configuration variables"
::= { pgsqlPgDatabaseEntry 11 }
pgsqlPgDatabaseDatacl OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Access privileges; see GRANT and REVOKE for details"
::= { pgsqlPgDatabaseEntry 12 }
---------------------------------------
pgsqlPgDependTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgDependEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_depend records the dependency relationships between database objects. This information allows DROP commands to find which other objects must be dropped by DROP CASCADE or prevent dropping in the DROP RESTRICT case. See also pg_shdepend, which performs a similar function for dependencies involving objects that are shared across a database cluster."
::= { pgsqlCatalogTables 15 }
pgsqlPgDependEntry OBJECT-TYPE
SYNTAX PgsqlPgDependEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Dependancy entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgDependEntryOID }
::= { pgsqlPgDependTable 1 }
PgsqlPgDependEntry ::=
SEQUENCE {
pgsqlPgDependEntryOID INTEGER,
pgsqlPgDependClassid INTEGER,
pgsqlPgDependObjid INTEGER,
pgsqlPgDependObjsubid INTEGER,
pgsqlPgDependRefclassid INTEGER,
pgsqlPgDependRefobjid INTEGER,
pgsqlPgDependRefobjsubid INTEGER,
pgsqlPgDependDeptype char
}
pgsqlPgDependEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgDependEntry 1 }
pgsqlPgDependClassid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the system catalog the dependent object is in"
::= { pgsqlPgDependEntry 2 }
pgsqlPgDependObjid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the specific dependent object"
::= { pgsqlPgDependEntry 3 }
pgsqlPgDependObjsubid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For a table column, this is the column number (the objid and classid refer to the table itself). For all other object types, this column is zero"
::= { pgsqlPgDependEntry 4 }
pgsqlPgDependRefclassid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the system catalog the referenced object is in"
::= { pgsqlPgDependEntry 5 }
pgsqlPgDependRefobjid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the specific referenced object"
::= { pgsqlPgDependEntry 6 }
pgsqlPgDependRefobjsubid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For a table column, this is the column number (the refobjid and refclassid refer to the table itself). For all other object types, this column is zero"
::= { pgsqlPgDependEntry 7 }
pgsqlPgDependDeptype OBJECT-TYPE
SYNTAX char
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A code defining the specific semantics of this dependency relationship; see text"
::= { pgsqlPgDependEntry 8 }
---------------------------------------
pgsqlPgDescriptionTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgDescriptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_description stores optional descriptions (comments) for each database object. Descriptions can be manipulated with the COMMENT command and viewed with psql's \d commands. Descriptions of many built-in system objects are provided in the initial contents of pg_description. See also pg_shdescription, which performs a similar function for descriptions involving objects that are shared across a database cluster."
::= { pgsqlCatalogTables 16 }
pgsqlPgDescriptionEntry OBJECT-TYPE
SYNTAX PgsqlPgDescriptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgDescriptionEntryOID }
::= { pgsqlPgDescriptionTable 1 }
PgsqlPgDescriptionEntry ::=
SEQUENCE {
pgsqlPgDescriptionEntryOID INTEGER,
pgsqlPgDescriptionObjoid INTEGER,
pgsqlPgDescriptionClassoid INTEGER,
pgsqlPgDescriptionObjsubid INTEGER,
pgsqlPgDescriptionDescription DisplayString
}
pgsqlPgDescriptionEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgDescriptionEntry 1 }
pgsqlPgDescriptionObjoid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the object this description pertains to"
::= { pgsqlPgDescriptionEntry 2 }
pgsqlPgDescriptionClassoid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the system catalog this object appears in"
::= { pgsqlPgDescriptionEntry 3 }
pgsqlPgDescriptionObjsubid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For a comment on a table column, this is the column number (the objoid and classoid refer to the table itself). For all other object types, this column is zero"
::= { pgsqlPgDescriptionEntry 4 }
pgsqlPgDescriptionDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Arbitrary text that serves as the description of this object"
::= { pgsqlPgDescriptionEntry 5 }
---------------------------------------
pgsqlPgEnumTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgEnumEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The pg_enum catalog contains entries matching enum types to their associated values and labels. The internal representation of a given enum value is actually the OID of its associated row in pg_enum. The OIDs for a particular enum type are guaranteed to be ordered in the way the type should sort, but there is no guarantee about the ordering of OIDs of unrelated enum types."
::= { pgsqlCatalogTables 34 }
pgsqlPgEnumEntry OBJECT-TYPE
SYNTAX PgsqlPgEnumEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_enum entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgEnumEntryOID }
::= { pgsqlPgEnumTable 1 }
PgsqlPgEnumEntry ::=
SEQUENCE {
pgsqlPgEnumEntryOID INTEGER,
pgsqlPgEnumEnumtypid INTEGER,
pgsqlPgEnumEnumlabel DisplayString
}
pgsqlPgEnumEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgEnumEntry 1 }
pgsqlPgEnumEnumtypid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the pg_type entry owning this enum value"
::= { pgsqlPgEnumEntry 2 }
pgsqlPgEnumEnumlabel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The textual label for this enum value"
::= { pgsqlPgEnumEntry 3 }
---------------------------------------
pgsqlPgIndexTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgIndexEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_index contains part of the information about indexes. The rest is mostly in pg_class."
::= { pgsqlCatalogTables 17 }
pgsqlPgIndexEntry OBJECT-TYPE
SYNTAX PgsqlPgIndexEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a single index"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgIndexEntryOID }
::= { pgsqlPgIndexTable 1 }
PgsqlPgIndexEntry ::=
SEQUENCE {
pgsqlPgIndexEntryOID INTEGER,
pgsqlPgIndexIndexrelid INTEGER,
pgsqlPgIndexIndrelid INTEGER,
pgsqlPgIndexIndnatts INTEGER,
pgsqlPgIndexIndisunique TruthValue,
pgsqlPgIndexIndisprimary TruthValue,
pgsqlPgIndexIndisclustered TruthValue,
pgsqlPgIndexIndisvalid TruthValue,
pgsqlPgIndexIndkey DisplayString,
pgsqlPgIndexIndclass DisplayString,
pgsqlPgIndexIndexprs DisplayString,
pgsqlPgIndexIndpred DisplayString
}
pgsqlPgIndexEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgIndexEntry 1 }
pgsqlPgIndexIndexrelid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the pg_class entry for this index"
::= { pgsqlPgIndexEntry 2 }
pgsqlPgIndexIndrelid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the pg_class entry for the table this index is for"
::= { pgsqlPgIndexEntry 3 }
pgsqlPgIndexIndnatts OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of columns in the index (duplicates pg_class.relnatts )"
::= { pgsqlPgIndexEntry 4 }
pgsqlPgIndexIndisunique OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If true, this is a unique index"
::= { pgsqlPgIndexEntry 5 }
pgsqlPgIndexIndisprimary OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If true, this index represents the primary key of the table. ( indisunique should always be true when this is true.)"
::= { pgsqlPgIndexEntry 6 }
pgsqlPgIndexIndisclustered OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If true, the table was last clustered on this index"
::= { pgsqlPgIndexEntry 7 }
pgsqlPgIndexIndisvalid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If true, the index is currently valid for queries. False means the index is possibly incomplete: it must still be modified by INSERT / UPDATE operations, but it cannot safely be used for queries. If it is unique, the uniqueness property is not true either"
::= { pgsqlPgIndexEntry 8 }
pgsqlPgIndexIndkey OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an array of indnatts values that indicate which table columns this index indexes. For example a value of 1 3 would mean that the first and the third table columns make up the index key. A zero in this array indicates that the corresponding index attribute is an expression over the table columns, rather than a simple column reference."
::= { pgsqlPgIndexEntry 9 }
pgsqlPgIndexIndclass OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For each column in the index key this contains the OID of the operator class to use. See pg_opclass for details"
::= { pgsqlPgIndexEntry 10 }
pgsqlPgIndexIndexprs OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Expression trees (in nodeToString() representation) for index attributes that are not simple column references. This is a list with one element for each zero entry in indkey . NULL if all index attributes are simple references"
::= { pgsqlPgIndexEntry 11 }
pgsqlPgIndexIndpred OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Expression tree (in nodeToString() representation) for partial index predicate. NULL if not a partial index"
::= { pgsqlPgIndexEntry 12 }
---------------------------------------
pgsqlPgInheritsTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgInheritsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_inherits records information about table inheritance hierarchies. There is one entry for each direct child table in the database. (Indirect inheritance can be determined by following chains of entries.)"
::= { pgsqlCatalogTables 18 }
pgsqlPgInheritsEntry OBJECT-TYPE
SYNTAX PgsqlPgInheritsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents an inheritance relationship"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgInheritsEntryOID }
::= { pgsqlPgInheritsTable 1 }
PgsqlPgInheritsEntry ::=
SEQUENCE {
pgsqlPgInheritsEntryOID INTEGER,
pgsqlPgInheritsInhrelid INTEGER,
pgsqlPgInheritsInhparent INTEGER,
pgsqlPgInheritsInhseqno INTEGER
}
pgsqlPgInheritsEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgInheritsEntry 1 }
pgsqlPgInheritsInhrelid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the child table"
::= { pgsqlPgInheritsEntry 2 }
pgsqlPgInheritsInhparent OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the parent table"
::= { pgsqlPgInheritsEntry 3 }
pgsqlPgInheritsInhseqno OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If there is more than one direct parent for a child table (multiple inheritance), this number tells the order in which the inherited columns are to be arranged. The count starts at 1"
::= { pgsqlPgInheritsEntry 4 }
---------------------------------------
pgsqlPgLanguageTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgLanguageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_language registers languages in which you can write functions or stored procedures."
::= { pgsqlCatalogTables 19 }
pgsqlPgLanguageEntry OBJECT-TYPE
SYNTAX PgsqlPgLanguageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a single language"
INDEX { entryID, rdbmsDbIndex, pgsqlPgLanguageEntryOID }
::= { pgsqlPgLanguageTable 1 }
PgsqlPgLanguageEntry ::=
SEQUENCE {
pgsqlPgLanguageEntryOID INTEGER,
pgsqlPgLanguageLanname DisplayString,
pgsqlPgLanguageLanispl TruthValue,
pgsqlPgLanguageLanpltrusted TruthValue,
pgsqlPgLanguageLanplcallfoid INTEGER,
pgsqlPgLanguageLanvalidator INTEGER,
pgsqlPgLanguageLanacl DisplayString
}
pgsqlPgLanguageEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgLanguageEntry 1 }
pgsqlPgLanguageLanname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the language"
::= { pgsqlPgLanguageEntry 2 }
pgsqlPgLanguageLanispl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is false for internal languages (such as SQL ) and true for user-defined languages. Currently, pg_dump still uses this to determine which languages need to be dumped, but this may be replaced by a different mechanism in the future"
::= { pgsqlPgLanguageEntry 3 }
pgsqlPgLanguageLanpltrusted OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if this is a trusted language, which means that it is believed not to grant access to anything outside the normal SQL execution environment. Only superusers may create functions in untrusted languages"
::= { pgsqlPgLanguageEntry 4 }
pgsqlPgLanguageLanplcallfoid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For noninternal languages this references the language handler, which is a special function that is responsible for executing all functions that are written in the particular language"
::= { pgsqlPgLanguageEntry 5 }
pgsqlPgLanguageLanvalidator OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This references a language validator function that is responsible for checking the syntax and validity of new functions when they are created. Zero if no validator is provided"
::= { pgsqlPgLanguageEntry 6 }
pgsqlPgLanguageLanacl OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Access privileges; see GRANT and REVOKE for details"
::= { pgsqlPgLanguageEntry 7 }
---------------------------------------
-- The 'data' column from pg_largeobject is not included here, because SNMP would only allow 255 or so bytes to be returned anyway, and that seems fairly useless
pgsqlPgLargeobjectTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgLargeobjectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_largeobject holds the data making up 'large objects'. A large object is identified by an OID assigned when it is created. Each large object is broken into segments or 'pages' small enough to be conveniently stored as rows in pg_largeobject. The amount of data per page is defined to be LOBLKSIZE (which is currently BLCKSZ/4, or typically 2 kB)."
::= { pgsqlCatalogTables 20 }
pgsqlPgLargeobjectEntry OBJECT-TYPE
SYNTAX PgsqlPgLargeobjectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a page from a large object"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgLargeobjectEntryOID }
::= { pgsqlPgLargeobjectTable 1 }
PgsqlPgLargeobjectEntry ::=
SEQUENCE {
pgsqlPgLargeobjectEntryOID INTEGER,
pgsqlPgLargeobjectLoid INTEGER,
pgsqlPgLargeobjectPageno INTEGER
}
pgsqlPgLargeobjectEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgLargeobjectEntry 1 }
pgsqlPgLargeobjectLoid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifier of the large object that includes this page"
::= { pgsqlPgLargeobjectEntry 2 }
pgsqlPgLargeobjectPageno OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Page number of this page within its large object (counting from zero)"
::= { pgsqlPgLargeobjectEntry 3 }
---------------------------------------
pgsqlPgListenerTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgListenerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_listener supports the LISTEN and NOTIFY commands. A listener creates an entry in pg_listener for each notification name it is listening for. A notifier scans pg_listener and updates each matching entry to show that a notification has occurred. The notifier also sends a signal (using the PID recorded in the table) to awaken the listener from sleep."
::= { pgsqlCatalogTables 21 }
pgsqlPgListenerEntry OBJECT-TYPE
SYNTAX PgsqlPgListenerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a single listener"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgListenerEntryOID }
::= { pgsqlPgListenerTable 1 }
PgsqlPgListenerEntry ::=
SEQUENCE {
pgsqlPgListenerEntryOID INTEGER,
pgsqlPgListenerRelname DisplayString,
pgsqlPgListenerListenerpid INTEGER,
pgsqlPgListenerNotification INTEGER
}
pgsqlPgListenerEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgListenerEntry 1 }
pgsqlPgListenerRelname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Notify condition name. (The name need not match any actual relation in the database; the name relname is historical.)"
::= { pgsqlPgListenerEntry 2 }
pgsqlPgListenerListenerpid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PID of the server process that created this entry"
::= { pgsqlPgListenerEntry 3 }
pgsqlPgListenerNotification OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Zero if no event is pending for this listener. If an event is pending, the PID of the server process that sent the notification."
::= { pgsqlPgListenerEntry 4 }
---------------------------------------
pgsqlPgNamespaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgNamespaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_namespace stores namespaces. A namespace is the structure underlying SQL schemas: each namespace can have a separate collection of relations, types, etc. without name conflicts."
::= { pgsqlCatalogTables 22 }
pgsqlPgNamespaceEntry OBJECT-TYPE
SYNTAX PgsqlPgNamespaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a single namespace"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgNamespaceEntryOID }
::= { pgsqlPgNamespaceTable 1 }
PgsqlPgNamespaceEntry ::=
SEQUENCE {
pgsqlPgNamespaceEntryOID INTEGER,
pgsqlPgNamespaceNspname DisplayString,
pgsqlPgNamespaceNspowner INTEGER,
pgsqlPgNamespaceNspacl DisplayString
}
pgsqlPgNamespaceEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgNamespaceEntry 1 }
pgsqlPgNamespaceNspname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the namespace"
::= { pgsqlPgNamespaceEntry 2 }
pgsqlPgNamespaceNspowner OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Owner of the namespace"
::= { pgsqlPgNamespaceEntry 3 }
pgsqlPgNamespaceNspacl OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Access privileges; see GRANT and REVOKE for details"
::= { pgsqlPgNamespaceEntry 4 }
---------------------------------------
pgsqlPgOpclassTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgOpclassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_opclass defines index access method operator classes. Each operator class defines semantics for index columns of a particular data type and a particular index access method. Note that there can be multiple operator classes for a given data type/access method combination, thus supporting multiple behaviors."
::= { pgsqlCatalogTables 23 }
pgsqlPgOpclassEntry OBJECT-TYPE
SYNTAX PgsqlPgOpclassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents an index access method operator class"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgOpclassEntryOID }
::= { pgsqlPgOpclassTable 1 }
PgsqlPgOpclassEntry ::=
SEQUENCE {
pgsqlPgOpclassEntryOID INTEGER,
pgsqlPgOpclassOpcamid INTEGER,
pgsqlPgOpclassOpcname DisplayString,
pgsqlPgOpclassOpcnamespace INTEGER,
pgsqlPgOpclassOpcowner INTEGER,
pgsqlPgOpclassOpcintype INTEGER,
pgsqlPgOpclassOpcdefault TruthValue,
pgsqlPgOpclassOpckeytype INTEGER
}
pgsqlPgOpclassEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgOpclassEntry 1 }
pgsqlPgOpclassOpcamid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index access method operator class is for"
::= { pgsqlPgOpclassEntry 2 }
pgsqlPgOpclassOpcname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of this operator class"
::= { pgsqlPgOpclassEntry 3 }
pgsqlPgOpclassOpcnamespace OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Namespace of this operator class"
::= { pgsqlPgOpclassEntry 4 }
pgsqlPgOpclassOpcowner OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Owner of the operator class"
::= { pgsqlPgOpclassEntry 5 }
pgsqlPgOpclassOpcintype OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Data type that the operator class indexes"
::= { pgsqlPgOpclassEntry 6 }
pgsqlPgOpclassOpcdefault OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if this operator class is the default for opcintype"
::= { pgsqlPgOpclassEntry 7 }
pgsqlPgOpclassOpckeytype OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of data stored in index, or zero if same as opcintype"
::= { pgsqlPgOpclassEntry 8 }
---------------------------------------
pgsqlPgOperatorTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgOperatorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_operator stores information about operators."
::= { pgsqlCatalogTables 24 }
pgsqlPgOperatorEntry OBJECT-TYPE
SYNTAX PgsqlPgOperatorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a single operator"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgOperatorEntryOID }
::= { pgsqlPgOperatorTable 1 }
PgsqlPgOperatorEntry ::=
SEQUENCE {
pgsqlPgOperatorEntryOID INTEGER,
pgsqlPgOperatorOprname DisplayString,
pgsqlPgOperatorOprnamespace INTEGER,
pgsqlPgOperatorOprowner INTEGER,
pgsqlPgOperatorOprkind DisplayString,
pgsqlPgOperatorOprcanhash TruthValue,
pgsqlPgOperatorOprleft INTEGER,
pgsqlPgOperatorOprright INTEGER,
pgsqlPgOperatorOprresult INTEGER,
pgsqlPgOperatorOprcom INTEGER,
pgsqlPgOperatorOprnegate INTEGER,
pgsqlPgOperatorOprlsortop INTEGER,
pgsqlPgOperatorOprrsortop INTEGER,
pgsqlPgOperatorOprltcmpop INTEGER,
pgsqlPgOperatorOprgtcmpop INTEGER,
pgsqlPgOperatorOprcode INTEGER,
pgsqlPgOperatorOprrest INTEGER,
pgsqlPgOperatorOprjoin INTEGER
}
pgsqlPgOperatorEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgOperatorEntry 1 }
pgsqlPgOperatorOprname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the operator"
::= { pgsqlPgOperatorEntry 2 }
pgsqlPgOperatorOprnamespace OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the namespace that contains this operator"
::= { pgsqlPgOperatorEntry 3 }
pgsqlPgOperatorOprowner OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Owner of the operator"
::= { pgsqlPgOperatorEntry 4 }
pgsqlPgOperatorOprkind OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"b = infix ( "
::= { pgsqlPgOperatorEntry 5 }
pgsqlPgOperatorOprcanhash OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This operator supports hash joins"
::= { pgsqlPgOperatorEntry 6 }
pgsqlPgOperatorOprleft OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of the left operand"
::= { pgsqlPgOperatorEntry 7 }
pgsqlPgOperatorOprright OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of the right operand"
::= { pgsqlPgOperatorEntry 8 }
pgsqlPgOperatorOprresult OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of the result"
::= { pgsqlPgOperatorEntry 9 }
pgsqlPgOperatorOprcom OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Commutator of this operator, if any"
::= { pgsqlPgOperatorEntry 10 }
pgsqlPgOperatorOprnegate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Negator of this operator, if any"
::= { pgsqlPgOperatorEntry 11 }
pgsqlPgOperatorOprlsortop OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this operator supports merge joins, the operator that sorts the type of the left-hand operand ( L<L )"
::= { pgsqlPgOperatorEntry 12 }
pgsqlPgOperatorOprrsortop OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this operator supports merge joins, the operator that sorts the type of the right-hand operand ( R<R )"
::= { pgsqlPgOperatorEntry 13 }
pgsqlPgOperatorOprltcmpop OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this operator supports merge joins, the less-than operator that compares the left and right operand types ( L<R )"
::= { pgsqlPgOperatorEntry 14 }
pgsqlPgOperatorOprgtcmpop OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this operator supports merge joins, the greater-than operator that compares the left and right operand types ( L>R )"
::= { pgsqlPgOperatorEntry 15 }
pgsqlPgOperatorOprcode OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Function that implements this operator"
::= { pgsqlPgOperatorEntry 16 }
pgsqlPgOperatorOprrest OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Restriction selectivity estimation function for this operator"
::= { pgsqlPgOperatorEntry 17 }
pgsqlPgOperatorOprjoin OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Join selectivity estimation function for this operator"
::= { pgsqlPgOperatorEntry 18 }
---------------------------------------
pgsqlPgOpfamilyTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgOpfamilyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_opfamily defines operator families. Each operator family is a collection of operators and associated support routines that implement the semantics specified for a particular index access method. Furthermore, the operators in a family are all 'compatible', in a way that is specified by the access method. The operator family concept allows cross-data-type operators to be used with indexes and to be reasoned about using knowledge of access method semantics."
::= { pgsqlCatalogTables 35 }
pgsqlPgOpfamilyEntry OBJECT-TYPE
SYNTAX PgsqlPgOpfamilyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_opfamily entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgOpfamilyEntryOID }
::= { pgsqlPgOpfamilyTable 1 }
PgsqlPgOpfamilyEntry ::=
SEQUENCE {
pgsqlPgOpfamilyEntryOID INTEGER,
pgsqlPgOpfamilyOpfmethod INTEGER,
pgsqlPgOpfamilyOpfname DisplayString,
pgsqlPgOpfamilyOpfnamespace INTEGER,
pgsqlPgOpfamilyOpfowner INTEGER
}
pgsqlPgOpfamilyEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgOpfamilyEntry 1 }
pgsqlPgOpfamilyOpfmethod OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index access method operator family is for"
::= { pgsqlPgOpfamilyEntry 2 }
pgsqlPgOpfamilyOpfname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of this operator family"
::= { pgsqlPgOpfamilyEntry 3 }
pgsqlPgOpfamilyOpfnamespace OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Namespace of this operator family"
::= { pgsqlPgOpfamilyEntry 4 }
pgsqlPgOpfamilyOpfowner OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Owner of the operator family"
::= { pgsqlPgOpfamilyEntry 5 }
---------------------------------------
pgsqlPgPltemplateTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgPltemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_pltemplate stores 'template' information for procedural languages. A template for a language allows the language to be created in a particular database by a simple CREATE LANGUAGE command, with no need to specify implementation details. Unlike most system catalogs, pg_pltemplate is shared across all databases of a cluster: there is only one copy of pg_pltemplate per cluster, not one per database. This allows the information to be accessible in each database as it is needed."
::= { pgsqlCatalogTables 25 }
pgsqlPgPltemplateEntry OBJECT-TYPE
SYNTAX PgsqlPgPltemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a procedural language template"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgPltemplateEntryOID }
::= { pgsqlPgPltemplateTable 1 }
PgsqlPgPltemplateEntry ::=
SEQUENCE {
pgsqlPgPltemplateEntryOID INTEGER,
pgsqlPgPltemplateTmplname DisplayString,
pgsqlPgPltemplateTmpltrusted TruthValue,
pgsqlPgPltemplateTmplhandler DisplayString,
pgsqlPgPltemplateTmplvalidator DisplayString,
pgsqlPgPltemplateTmpllibrary DisplayString,
pgsqlPgPltemplateTmplacl DisplayString
}
pgsqlPgPltemplateEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgPltemplateEntry 1 }
pgsqlPgPltemplateTmplname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the language this template is for"
::= { pgsqlPgPltemplateEntry 2 }
pgsqlPgPltemplateTmpltrusted OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if language is considered trusted"
::= { pgsqlPgPltemplateEntry 3 }
pgsqlPgPltemplateTmplhandler OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of call handler function"
::= { pgsqlPgPltemplateEntry 4 }
pgsqlPgPltemplateTmplvalidator OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of validator function, or NULL if none"
::= { pgsqlPgPltemplateEntry 5 }
pgsqlPgPltemplateTmpllibrary OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Path of shared library that implements language"
::= { pgsqlPgPltemplateEntry 6 }
pgsqlPgPltemplateTmplacl OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Access privileges for template (not yet used)"
::= { pgsqlPgPltemplateEntry 7 }
---------------------------------------
pgsqlPgProcTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgProcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_proc stores information about functions (or procedures). The table contains data for aggregate functions as well as plain functions. If proisagg is true, there should be a matching row in pg_aggregate."
::= { pgsqlCatalogTables 26 }
pgsqlPgProcEntry OBJECT-TYPE
SYNTAX PgsqlPgProcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a single stored procedure"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgProcEntryOID }
::= { pgsqlPgProcTable 1 }
PgsqlPgProcEntry ::=
SEQUENCE {
pgsqlPgProcEntryOID INTEGER,
pgsqlPgProcProname DisplayString,
pgsqlPgProcPronamespace INTEGER,
pgsqlPgProcProowner INTEGER,
pgsqlPgProcProlang INTEGER,
pgsqlPgProcProisagg TruthValue,
pgsqlPgProcProsecdef TruthValue,
pgsqlPgProcProisstrict TruthValue,
pgsqlPgProcProretset TruthValue,
pgsqlPgProcProvolatile DisplayString,
pgsqlPgProcPronargs INTEGER,
pgsqlPgProcProrettype INTEGER,
pgsqlPgProcProargtypes DisplayString,
pgsqlPgProcProallargtypes DisplayString,
pgsqlPgProcProargmodes DisplayString,
pgsqlPgProcProargnames DisplayString,
pgsqlPgProcProsrc DisplayString,
pgsqlPgProcProbin DisplayString,
pgsqlPgProcProacl DisplayString
}
pgsqlPgProcEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgProcEntry 1 }
pgsqlPgProcProname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the function"
::= { pgsqlPgProcEntry 2 }
pgsqlPgProcPronamespace OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the namespace that contains this function"
::= { pgsqlPgProcEntry 3 }
pgsqlPgProcProowner OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Owner of the function"
::= { pgsqlPgProcEntry 4 }
pgsqlPgProcProlang OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Implementation language or call interface of this function"
::= { pgsqlPgProcEntry 5 }
pgsqlPgProcProisagg OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Function is an aggregate function"
::= { pgsqlPgProcEntry 6 }
pgsqlPgProcProsecdef OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Function is a security definer (i.e., a "
::= { pgsqlPgProcEntry 7 }
pgsqlPgProcProisstrict OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Function returns null if any call argument is null. In that case the function won't actually be called at all. Functions that are not "
::= { pgsqlPgProcEntry 8 }
pgsqlPgProcProretset OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Function returns a set (i.e., multiple values of the specified data type)"
::= { pgsqlPgProcEntry 9 }
pgsqlPgProcProvolatile OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"provolatile tells whether the function's result depends only on its input arguments, or is affected by outside factors. It is i for "
::= { pgsqlPgProcEntry 10 }
pgsqlPgProcPronargs OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of arguments"
::= { pgsqlPgProcEntry 11 }
pgsqlPgProcProrettype OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Data type of the return value"
::= { pgsqlPgProcEntry 12 }
pgsqlPgProcProargtypes OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An array with the data types of the function arguments. This includes only input arguments (including INOUT arguments), and thus represents the call signature of the function"
::= { pgsqlPgProcEntry 13 }
pgsqlPgProcProallargtypes OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An array with the data types of the function arguments. This includes all arguments (including OUT and INOUT arguments); however, if all the arguments are IN arguments, this field will be null. Note that subscripting is 1-based, whereas for historical reasons proargtypes is subscripted from 0"
::= { pgsqlPgProcEntry 14 }
pgsqlPgProcProargmodes OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An array with the modes of the function arguments, encoded as i for IN arguments, o for OUT arguments, b for INOUT arguments. If all the arguments are IN arguments, this field will be null. Note that subscripts correspond to positions of proallargtypes not proargtypes"
::= { pgsqlPgProcEntry 15 }
pgsqlPgProcProargnames OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An array with the names of the function arguments. Arguments without a name are set to empty strings in the array. If none of the arguments have a name, this field will be null. Note that subscripts correspond to positions of proallargtypes not proargtypes"
::= { pgsqlPgProcEntry 16 }
pgsqlPgProcProsrc OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This tells the function handler how to invoke the function. It might be the actual source code of the function for interpreted languages, a link symbol, a file name, or just about anything else, depending on the implementation language/call convention"
::= { pgsqlPgProcEntry 17 }
pgsqlPgProcProbin OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Additional information about how to invoke the function. Again, the interpretation is language-specific"
::= { pgsqlPgProcEntry 18 }
pgsqlPgProcProacl OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Access privileges; see GRANT and REVOKE for details"
::= { pgsqlPgProcEntry 19 }
---------------------------------------
pgsqlPgRewriteTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgRewriteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_rewrite stores rewrite rules for tables and views."
::= { pgsqlCatalogTables 27 }
pgsqlPgRewriteEntry OBJECT-TYPE
SYNTAX PgsqlPgRewriteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a single rewrite rule"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgRewriteEntryOID }
::= { pgsqlPgRewriteTable 1 }
PgsqlPgRewriteEntry ::=
SEQUENCE {
pgsqlPgRewriteEntryOID INTEGER,
pgsqlPgRewriteRulename DisplayString,
pgsqlPgRewriteEvClass INTEGER,
pgsqlPgRewriteEvAttr INTEGER,
pgsqlPgRewriteEvType DisplayString,
pgsqlPgRewriteIsInstead TruthValue,
pgsqlPgRewriteEvQual DisplayString,
pgsqlPgRewriteEvAction DisplayString
}
pgsqlPgRewriteEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgRewriteEntry 1 }
pgsqlPgRewriteRulename OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Rule name"
::= { pgsqlPgRewriteEntry 2 }
pgsqlPgRewriteEvClass OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table this rule is for"
::= { pgsqlPgRewriteEntry 3 }
pgsqlPgRewriteEvAttr OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The column this rule is for (currently, always zero to indicate the whole table)"
::= { pgsqlPgRewriteEntry 4 }
pgsqlPgRewriteEvType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Event type that the rule is for: 1 = SELECT , 2 = UPDATE , 3 = INSERT , 4 = DELETE"
::= { pgsqlPgRewriteEntry 5 }
pgsqlPgRewriteIsInstead OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if the rule is an INSTEAD rule"
::= { pgsqlPgRewriteEntry 6 }
pgsqlPgRewriteEvQual OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Expression tree (in the form of a nodeToString() representation) for the rule's qualifying condition"
::= { pgsqlPgRewriteEntry 7 }
pgsqlPgRewriteEvAction OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Query tree (in the form of a nodeToString() representation) for the rule's action"
::= { pgsqlPgRewriteEntry 8 }
---------------------------------------
pgsqlPgShdependTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgShdependEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_shdepend records the dependency relationships between database objects and shared objects, such as roles. This information allows PostgreSQL to ensure that those objects are unreferenced before attempting to delete them. See also pg_depend, which performs a similar function for dependencies involving objects within a single database. Unlike most system catalogs, pg_shdepend is shared across all databases of a cluster: there is only one copy of pg_shdepend per cluster, not one per database."
::= { pgsqlCatalogTables 28 }
pgsqlPgShdependEntry OBJECT-TYPE
SYNTAX PgsqlPgShdependEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a single shared-object dependency"
INDEX { pgsnmpdConnID, pgsqlPgShdependEntryOID }
::= { pgsqlPgShdependTable 1 }
PgsqlPgShdependEntry ::=
SEQUENCE {
pgsqlPgShdependEntryOID INTEGER,
pgsqlPgShdependDbid INTEGER,
pgsqlPgShdependClassid INTEGER,
pgsqlPgShdependObjid INTEGER,
pgsqlPgShdependRefclassid INTEGER,
pgsqlPgShdependRefobjid INTEGER,
pgsqlPgShdependDeptype DisplayString
}
pgsqlPgShdependEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgShdependEntry 1 }
pgsqlPgShdependDbid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the database the dependent object is in, or zero for a shared object"
::= { pgsqlPgShdependEntry 2 }
pgsqlPgShdependClassid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the system catalog the dependent object is in"
::= { pgsqlPgShdependEntry 3 }
pgsqlPgShdependObjid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the specific dependent object"
::= { pgsqlPgShdependEntry 4 }
pgsqlPgShdependRefclassid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the system catalog the referenced object is in (must be a shared catalog)"
::= { pgsqlPgShdependEntry 5 }
pgsqlPgShdependRefobjid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the specific referenced object"
::= { pgsqlPgShdependEntry 6 }
pgsqlPgShdependDeptype OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A code defining the specific semantics of this dependency relationship; see text"
::= { pgsqlPgShdependEntry 7 }
---------------------------------------
pgsqlPgShdescriptionTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgShdescriptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_shdescription stores optional descriptions (comments) for shared database objects. Descriptions can be manipulated with the COMMENT command and viewed with psql's \d commands. See also pg_description, which performs a similar function for descriptions involving objects within a single database. Unlike most system catalogs, pg_shdescription is shared across all databases of a cluster: there is only one copy of pg_shdescription per cluster, not one per database."
::= { pgsqlCatalogTables 29 }
pgsqlPgShdescriptionEntry OBJECT-TYPE
SYNTAX PgsqlPgShdescriptionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a single shared object description"
INDEX { pgsnmpdConnID, pgsqlPgShdescriptionEntryOID }
::= { pgsqlPgShdescriptionTable 1 }
PgsqlPgShdescriptionEntry ::=
SEQUENCE {
pgsqlPgShdescriptionEntryOID INTEGER,
pgsqlPgShdescriptionObjoid INTEGER,
pgsqlPgShdescriptionClassoid INTEGER,
pgsqlPgShdescriptionDescription DisplayString
}
pgsqlPgShdescriptionEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgShdescriptionEntry 1 }
pgsqlPgShdescriptionObjoid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the object this description pertains to"
::= { pgsqlPgShdescriptionEntry 2 }
pgsqlPgShdescriptionClassoid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the system catalog this object appears in"
::= { pgsqlPgShdescriptionEntry 3 }
pgsqlPgShdescriptionDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Arbitrary text that serves as the description of this object"
::= { pgsqlPgShdescriptionEntry 4 }
---------------------------------------
pgsqlPgStatisticTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgStatisticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_statistic stores statistical data about the contents of the database. Entries are created by ANALYZE and subsequently used by the query planner. There is one entry for each table column that has been analyzed. Note that all the statistical data is inherently approximate, even assuming that it is up-to-date. pg_statistic also stores statistical data about the values of index expressions. These are described as if they were actual data columns; in particular, starelid references the index. No entry is made for an ordinary non-expression index column, however, since it would be redundant with the entry for the underlying table column. Since different kinds of statistics may be appropriate for different kinds of data, pg_statistic is designed not to assume very much about what sort of statistics it stores. Only extremely general statistics (such as nullness) are given dedicated columns in pg_statistic. Everything else is stored in 'slots', which are groups of associated columns whose content is identified by a code number in one of the slot's columns. For more information see src/include/catalog/pg_statistic.h. pg_statistic should not be readable by the public, since even statistical information about a table's contents may be considered sensitive. (Example: minimum and maximum values of a salary column might be quite interesting.) pg_stats is a publicly readable view on pg_statistic that only exposes information about those tables that are readable by the current user."
::= { pgsqlCatalogTables 30 }
pgsqlPgStatisticEntry OBJECT-TYPE
SYNTAX PgsqlPgStatisticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents statistics data for a single column"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgStatisticEntryOID }
::= { pgsqlPgStatisticTable 1 }
PgsqlPgStatisticEntry ::=
SEQUENCE {
pgsqlPgStatisticEntryOID INTEGER,
pgsqlPgStatisticStarelid INTEGER,
pgsqlPgStatisticStaattnum INTEGER,
pgsqlPgStatisticStanullfrac Float,
pgsqlPgStatisticStawidth INTEGER,
pgsqlPgStatisticStadistinct Float,
pgsqlPgStatisticStakind1 INTEGER,
pgsqlPgStatisticStakind2 INTEGER,
pgsqlPgStatisticStakind3 INTEGER,
pgsqlPgStatisticStakind4 INTEGER,
pgsqlPgStatisticStaop1 INTEGER,
pgsqlPgStatisticStaop2 INTEGER,
pgsqlPgStatisticStaop3 INTEGER,
pgsqlPgStatisticStaop4 INTEGER,
pgsqlPgStatisticStanumbers1 DisplayString,
pgsqlPgStatisticStanumbers2 DisplayString,
pgsqlPgStatisticStanumbers3 DisplayString,
pgsqlPgStatisticStanumbers4 DisplayString,
pgsqlPgStatisticStavalues1 DisplayString,
pgsqlPgStatisticStavalues2 DisplayString,
pgsqlPgStatisticStavalues3 DisplayString,
pgsqlPgStatisticStavalues4 DisplayString
}
pgsqlPgStatisticEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgStatisticEntry 1 }
pgsqlPgStatisticStarelid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table or index that the described column belongs to"
::= { pgsqlPgStatisticEntry 2 }
pgsqlPgStatisticStaattnum OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the described column"
::= { pgsqlPgStatisticEntry 3 }
pgsqlPgStatisticStanullfrac OBJECT-TYPE
SYNTAX Float
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The fraction of the column's entries that are null"
::= { pgsqlPgStatisticEntry 4 }
pgsqlPgStatisticStawidth OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average stored width, in bytes, of nonnull entries"
::= { pgsqlPgStatisticEntry 5 }
pgsqlPgStatisticStadistinct OBJECT-TYPE
SYNTAX Float
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of distinct nonnull data values in the column. A value greater than zero is the actual number of distinct values. A value less than zero is the negative of a fraction of the number of rows in the table (for example, a column in which values appear about twice on the average could be represented by stadistinct = -0.5). A zero value means the number of distinct values is unknown"
::= { pgsqlPgStatisticEntry 6 }
pgsqlPgStatisticStakind1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A code number indicating the kind of statistics stored in the 1st 'slot' of the pg_statistic row"
::= { pgsqlPgStatisticEntry 7 }
pgsqlPgStatisticStakind2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A code number indicating the kind of statistics stored in the 2nd 'slot' of the pg_statistic row"
::= { pgsqlPgStatisticEntry 8 }
pgsqlPgStatisticStakind3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A code number indicating the kind of statistics stored in the 3rd 'slot' of the pg_statistic row"
::= { pgsqlPgStatisticEntry 9 }
pgsqlPgStatisticStakind4 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A code number indicating the kind of statistics stored in the 4th 'slot' of the pg_statistic row"
::= { pgsqlPgStatisticEntry 10 }
pgsqlPgStatisticStaop1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An operator used to derive the statistics stored in the 1st 'slot' . For example, a histogram slot would show the < operator that defines the sort order of the data"
::= { pgsqlPgStatisticEntry 11 }
pgsqlPgStatisticStaop2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An operator used to derive the statistics stored in the 2nd 'slot' . For example, a histogram slot would show the < operator that defines the sort order of the data"
::= { pgsqlPgStatisticEntry 12 }
pgsqlPgStatisticStaop3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An operator used to derive the statistics stored in the 3rd 'slot' . For example, a histogram slot would show the < operator that defines the sort order of the data"
::= { pgsqlPgStatisticEntry 13 }
pgsqlPgStatisticStaop4 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An operator used to derive the statistics stored in the 4th 'slot' . For example, a histogram slot would show the < operator that defines the sort order of the data"
::= { pgsqlPgStatisticEntry 14 }
pgsqlPgStatisticStanumbers1 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Numerical statistics of the appropriate kind for the 1st 'slot' , or NULL if the slot kind does not involve numerical values"
::= { pgsqlPgStatisticEntry 15 }
pgsqlPgStatisticStanumbers2 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Numerical statistics of the appropriate kind for the 2nd 'slot' , or NULL if the slot kind does not involve numerical values"
::= { pgsqlPgStatisticEntry 16 }
pgsqlPgStatisticStanumbers3 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Numerical statistics of the appropriate kind for the 3rd 'slot' , or NULL if the slot kind does not involve numerical values"
::= { pgsqlPgStatisticEntry 17 }
pgsqlPgStatisticStanumbers4 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Numerical statistics of the appropriate kind for the 4th 'slot' , or NULL if the slot kind does not involve numerical values"
::= { pgsqlPgStatisticEntry 18 }
pgsqlPgStatisticStavalues1 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Column data values of the appropriate kind for the 1st 'slot' , or NULL if the slot kind does not store any data values. Each array's element values are actually of the specific column's data type, so there is no way to define these columns' type more specifically than anyarray"
::= { pgsqlPgStatisticEntry 19 }
pgsqlPgStatisticStavalues2 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Column data values of the appropriate kind for the 2nd 'slot' , or NULL if the slot kind does not store any data values. Each array's element values are actually of the specific column's data type, so there is no way to define these columns' type more specifically than anyarray"
::= { pgsqlPgStatisticEntry 20 }
pgsqlPgStatisticStavalues3 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Column data values of the appropriate kind for the 3rd 'slot' , or NULL if the slot kind does not store any data values. Each array's element values are actually of the specific column's data type, so there is no way to define these columns' type more specifically than anyarray"
::= { pgsqlPgStatisticEntry 21 }
pgsqlPgStatisticStavalues4 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Column data values of the appropriate kind for the 4th 'slot' , or NULL if the slot kind does not store any data values. Each array's element values are actually of the specific column's data type, so there is no way to define these columns' type more specifically than anyarray"
::= { pgsqlPgStatisticEntry 22 }
---------------------------------------
pgsqlPgTablespaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgTablespaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_tablespace stores information about the available tablespaces. Tables can be placed in particular tablespaces to aid administration of disk layout. Unlike most system catalogs, pg_tablespace is shared across all databases of a cluster: there is only one copy of pg_tablespace per cluster, not one per database."
::= { pgsqlCatalogTables 31 }
pgsqlPgTablespaceEntry OBJECT-TYPE
SYNTAX PgsqlPgTablespaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a single tablespace"
INDEX { pgsnmpdConnID, pgsqlPgTablespaceEntryOID }
::= { pgsqlPgTablespaceTable 1 }
PgsqlPgTablespaceEntry ::=
SEQUENCE {
pgsqlPgTablespaceEntryOID INTEGER,
pgsqlPgTablespaceSpcname DisplayString,
pgsqlPgTablespaceSpcowner INTEGER,
pgsqlPgTablespaceSpclocation DisplayString,
pgsqlPgTablespaceSpcacl DisplayString
}
pgsqlPgTablespaceEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgTablespaceEntry 1 }
pgsqlPgTablespaceSpcname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tablespace name"
::= { pgsqlPgTablespaceEntry 2 }
pgsqlPgTablespaceSpcowner OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Owner of the tablespace, usually the user who created it"
::= { pgsqlPgTablespaceEntry 3 }
pgsqlPgTablespaceSpclocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Location (directory path) of the tablespace"
::= { pgsqlPgTablespaceEntry 4 }
pgsqlPgTablespaceSpcacl OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Access privileges; see GRANT and REVOKE for details"
::= { pgsqlPgTablespaceEntry 5 }
---------------------------------------
pgsqlPgTriggerTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgTriggerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_trigger stores triggers on tables."
::= { pgsqlCatalogTables 32 }
pgsqlPgTriggerEntry OBJECT-TYPE
SYNTAX PgsqlPgTriggerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a single trigger"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgTriggerEntryOID }
::= { pgsqlPgTriggerTable 1 }
PgsqlPgTriggerEntry ::=
SEQUENCE {
pgsqlPgTriggerEntryOID INTEGER,
pgsqlPgTriggerTgrelid INTEGER,
pgsqlPgTriggerTgname DisplayString,
pgsqlPgTriggerTgfoid INTEGER,
pgsqlPgTriggerTgtype INTEGER,
pgsqlPgTriggerTgenabled TruthValue,
pgsqlPgTriggerTgisconstraint TruthValue,
pgsqlPgTriggerTgconstrname DisplayString,
pgsqlPgTriggerTgconstrrelid INTEGER,
pgsqlPgTriggerTgdeferrable TruthValue,
pgsqlPgTriggerTginitdeferred TruthValue,
pgsqlPgTriggerTgnargs INTEGER,
pgsqlPgTriggerTgattr DisplayString,
pgsqlPgTriggerTgargs DisplayString
}
pgsqlPgTriggerEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgTriggerEntry 1 }
pgsqlPgTriggerTgrelid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table this trigger is on"
::= { pgsqlPgTriggerEntry 2 }
pgsqlPgTriggerTgname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Trigger name (must be unique among triggers of same table)"
::= { pgsqlPgTriggerEntry 3 }
pgsqlPgTriggerTgfoid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The function to be called"
::= { pgsqlPgTriggerEntry 4 }
pgsqlPgTriggerTgtype OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Bit mask identifying trigger conditions"
::= { pgsqlPgTriggerEntry 5 }
pgsqlPgTriggerTgenabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if trigger is enabled"
::= { pgsqlPgTriggerEntry 6 }
pgsqlPgTriggerTgisconstraint OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if trigger implements a referential integrity constraint"
::= { pgsqlPgTriggerEntry 7 }
pgsqlPgTriggerTgconstrname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Referential integrity constraint name"
::= { pgsqlPgTriggerEntry 8 }
pgsqlPgTriggerTgconstrrelid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table referenced by an referential integrity constraint"
::= { pgsqlPgTriggerEntry 9 }
pgsqlPgTriggerTgdeferrable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if deferrable"
::= { pgsqlPgTriggerEntry 10 }
pgsqlPgTriggerTginitdeferred OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if initially deferred"
::= { pgsqlPgTriggerEntry 11 }
pgsqlPgTriggerTgnargs OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of argument strings passed to trigger function"
::= { pgsqlPgTriggerEntry 12 }
pgsqlPgTriggerTgattr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Currently unused"
::= { pgsqlPgTriggerEntry 13 }
pgsqlPgTriggerTgargs OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Argument strings to pass to trigger, each NULL-terminated"
::= { pgsqlPgTriggerEntry 14 }
---------------------------------------
pgsqlPgTsConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgTsConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The pg_ts_config catalog contains entries representing text search configurations. A configuration specifies a particular text search parser and a list of dictionaries to use for each of the parser's output token types. The parser is shown in the pg_ts_config entry, but the token-to-dictionary mapping is defined by subsidiary entries in pg_ts_config_map."
::= { pgsqlCatalogTables 36 }
pgsqlPgTsConfigEntry OBJECT-TYPE
SYNTAX PgsqlPgTsConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_ts_config entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgTsConfigEntryOID }
::= { pgsqlPgTsConfigTable 1 }
PgsqlPgTsConfigEntry ::=
SEQUENCE {
pgsqlPgTsConfigEntryOID INTEGER,
pgsqlPgTsConfigCfgname DisplayString ,
pgsqlPgTsConfigCfgnamespace INTEGER,
pgsqlPgTsConfigCfgowner INTEGER,
pgsqlPgTsConfigCfgparser INTEGER
}
pgsqlPgTsConfigEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgTsConfigEntry 1 }
pgsqlPgTsConfigCfgname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Text search configuration name"
::= { pgsqlPgTsConfigEntry 2 }
pgsqlPgTsConfigCfgnamespace OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the namespace that contains this configuration"
::= { pgsqlPgTsConfigEntry 3 }
pgsqlPgTsConfigCfgowner OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Owner of the configuration"
::= { pgsqlPgTsConfigEntry 4 }
pgsqlPgTsConfigCfgparser OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the text search parser for this configuration"
::= { pgsqlPgTsConfigEntry 5 }
---------------------------------------
pgsqlPgTsConfigMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgTsConfigMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The pg_ts_config_map catalog contains entries showing which text search dictionaries should be consulted, and in what order, for each output token type of each text search configuration's parser."
::= { pgsqlCatalogTables 37 }
pgsqlPgTsConfigMapEntry OBJECT-TYPE
SYNTAX PgsqlPgTsConfigMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_ts_config_map entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgTsConfigMapEntryOID }
::= { pgsqlPgTsConfigMapTable 1 }
PgsqlPgTsConfigMapEntry ::=
SEQUENCE {
pgsqlPgTsConfigMapEntryOID INTEGER,
pgsqlPgTsConfigMapMapcfg INTEGER,
pgsqlPgTsConfigMapMaptokentype INTEGER,
pgsqlPgTsConfigMapMapseqno INTEGER,
pgsqlPgTsConfigMapMapdict INTEGER
}
pgsqlPgTsConfigMapEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgTsConfigMapEntry 1 }
pgsqlPgTsConfigMapMapcfg OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the pg_ts_config entry owning this map entry"
::= { pgsqlPgTsConfigMapEntry 2 }
pgsqlPgTsConfigMapMaptokentype OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A token type emitted by the configuration's parser"
::= { pgsqlPgTsConfigMapEntry 3 }
pgsqlPgTsConfigMapMapseqno OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Order in which to consult this entry (lower mapseqnos first)"
::= { pgsqlPgTsConfigMapEntry 4 }
pgsqlPgTsConfigMapMapdict OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the text search dictionary to consult"
::= { pgsqlPgTsConfigMapEntry 5 }
---------------------------------------
pgsqlPgTsDictTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgTsDictEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The pg_ts_dict catalog contains entries defining text search dictionaries. A dictionary depends on a text search template, which specifies all the implementation functions needed; the dictionary itself provides values for the user-settable parameters supported by the template. This division of labor allows dictionaries to be created by unprivileged users. The parameters are specified by a text string dictinitoption, whose format and meaning vary depending on the template."
::= { pgsqlCatalogTables 38 }
pgsqlPgTsDictEntry OBJECT-TYPE
SYNTAX PgsqlPgTsDictEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_ts_dict entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgTsDictEntryOID }
::= { pgsqlPgTsDictTable 1 }
PgsqlPgTsDictEntry ::=
SEQUENCE {
pgsqlPgTsDictEntryOID INTEGER,
pgsqlPgTsDictDictname DisplayString ,
pgsqlPgTsDictDictnamespace INTEGER,
pgsqlPgTsDictDictowner INTEGER,
pgsqlPgTsDictDicttemplate INTEGER,
pgsqlPgTsDictDictinitoption DisplayString
}
pgsqlPgTsDictEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgTsDictEntry 1 }
pgsqlPgTsDictDictname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Text search dictionary name"
::= { pgsqlPgTsDictEntry 2 }
pgsqlPgTsDictDictnamespace OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the namespace that contains this dictionary"
::= { pgsqlPgTsDictEntry 3 }
pgsqlPgTsDictDictowner OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Owner of the dictionary"
::= { pgsqlPgTsDictEntry 4 }
pgsqlPgTsDictDicttemplate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the text search template for this dictionary"
::= { pgsqlPgTsDictEntry 5 }
pgsqlPgTsDictDictinitoption OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Initialization option string for the template"
::= { pgsqlPgTsDictEntry 6 }
---------------------------------------
pgsqlPgTsParserTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgTsParserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The pg_ts_parser catalog contains entries defining text search parsers. A parser is responsible for splitting input text into lexemes and assigning a token type to each lexeme. Since a parser must be implemented by C-language-level functions, creation of new parsers is restricted to database superusers."
::= { pgsqlCatalogTables 39 }
pgsqlPgTsParserEntry OBJECT-TYPE
SYNTAX PgsqlPgTsParserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_ts_parser entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgTsParserEntryOID }
::= { pgsqlPgTsParserTable 1 }
PgsqlPgTsParserEntry ::=
SEQUENCE {
pgsqlPgTsParserEntryOID INTEGER,
pgsqlPgTsParserPrsname DisplayString ,
pgsqlPgTsParserPrsnamespace INTEGER,
pgsqlPgTsParserPrsstart INTEGER,
pgsqlPgTsParserPrstoken INTEGER,
pgsqlPgTsParserPrsend INTEGER,
pgsqlPgTsParserPrsheadline INTEGER,
pgsqlPgTsParserPrslextype INTEGER
}
pgsqlPgTsParserEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgTsParserEntry 1 }
pgsqlPgTsParserPrsname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Text search parser name"
::= { pgsqlPgTsParserEntry 2 }
pgsqlPgTsParserPrsnamespace OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the namespace that contains this parser"
::= { pgsqlPgTsParserEntry 3 }
pgsqlPgTsParserPrsstart OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the parser's startup function"
::= { pgsqlPgTsParserEntry 4 }
pgsqlPgTsParserPrstoken OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the parser's next-token function"
::= { pgsqlPgTsParserEntry 5 }
pgsqlPgTsParserPrsend OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the parser's shutdown function"
::= { pgsqlPgTsParserEntry 6 }
pgsqlPgTsParserPrsheadline OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the parser's headline function"
::= { pgsqlPgTsParserEntry 7 }
pgsqlPgTsParserPrslextype OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the parser's lextype function"
::= { pgsqlPgTsParserEntry 8 }
---------------------------------------
pgsqlPgTsTemplateTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgTsTemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The pg_ts_template catalog contains entries defining text search templates. A template is the implementation skeleton for a class of text search dictionaries. Since a template must be implemented by C-language-level functions, creation of new templates is restricted to database superusers."
::= { pgsqlCatalogTables 40 }
pgsqlPgTsTemplateEntry OBJECT-TYPE
SYNTAX PgsqlPgTsTemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"pg_ts_template entry"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgTsTemplateEntryOID }
::= { pgsqlPgTsTemplateTable 1 }
PgsqlPgTsTemplateEntry ::=
SEQUENCE {
pgsqlPgTsTemplateEntryOID INTEGER,
pgsqlPgTsTemplateTmplname DisplayString,
pgsqlPgTsTemplateTmplnamespace INTEGER,
pgsqlPgTsTemplateTmplinit INTEGER,
pgsqlPgTsTemplateTmpllexize INTEGER
}
pgsqlPgTsTemplateEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgTsTemplateEntry 1 }
pgsqlPgTsTemplateTmplname OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Text search template name"
::= { pgsqlPgTsTemplateEntry 2 }
pgsqlPgTsTemplateTmplnamespace OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the namespace that contains this template"
::= { pgsqlPgTsTemplateEntry 3 }
pgsqlPgTsTemplateTmplinit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the template's initialization function"
::= { pgsqlPgTsTemplateEntry 4 }
pgsqlPgTsTemplateTmpllexize OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OID of the template's lexize function"
::= { pgsqlPgTsTemplateEntry 5 }
---------------------------------------
pgsqlPgTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF pgsqlPgTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The catalog pg_type stores information about data types. Base types (scalar types) are created with CREATE TYPE, and domains with CREATE DOMAIN. A composite type is automatically created for each table in the database, to represent the row structure of the table. It is also possible to create composite types with CREATE TYPE AS."
::= { pgsqlCatalogTables 33 }
pgsqlPgTypeEntry OBJECT-TYPE
SYNTAX PgsqlPgTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Represents a single type"
INDEX { pgsnmpdConnID, rdbmsDbIndex, pgsqlPgTypeEntryOID }
::= { pgsqlPgTypeTable 1 }
PgsqlPgTypeEntry ::=
SEQUENCE {
pgsqlPgTypeEntryOID INTEGER,
pgsqlPgTypeTypname name,
pgsqlPgTypeTypnamespace oid,
pgsqlPgTypeTypowner oid,
pgsqlPgTypeTyplen int2,
pgsqlPgTypeTypbyval bool,
pgsqlPgTypeTyptype char,
pgsqlPgTypeTypisdefined bool,
pgsqlPgTypeTypdelim char,
pgsqlPgTypeTyprelid oid,
pgsqlPgTypeTypelem oid,
pgsqlPgTypeTypinput regproc,
pgsqlPgTypeTypoutput regproc,
pgsqlPgTypeTypreceive regproc,
pgsqlPgTypeTypsend regproc,
pgsqlPgTypeTypanalyze regproc,
pgsqlPgTypeTypalign char,
pgsqlPgTypeTypstorage char,
pgsqlPgTypeTypnotnull bool,
pgsqlPgTypeTypbasetype oid,
pgsqlPgTypeTyptypmod int4,
pgsqlPgTypeTypndims int4,
pgsqlPgTypeTypdefaultbin text,
pgsqlPgTypeTypdefault text
}
pgsqlPgTypeEntryOID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"OID of this entry"
::= { pgsqlPgTypeEntry 1 }
pgsqlPgTypeTypname OBJECT-TYPE
SYNTAX name
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Data type name"
::= { pgsqlPgTypeEntry 2 }
pgsqlPgTypeTypnamespace OBJECT-TYPE
SYNTAX oid
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The OID of the namespace that contains this type"
::= { pgsqlPgTypeEntry 3 }
pgsqlPgTypeTypowner OBJECT-TYPE
SYNTAX oid
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Owner of the type"
::= { pgsqlPgTypeEntry 4 }
pgsqlPgTypeTyplen OBJECT-TYPE
SYNTAX int2
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For a fixed-size type, typlen is the number of bytes in the internal representation of the type. But for a variable-length type, typlen is negative. -1 indicates a "
::= { pgsqlPgTypeEntry 5 }
pgsqlPgTypeTypbyval OBJECT-TYPE
SYNTAX bool
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"typbyval determines whether internal routines pass a value of this type by value or by reference. typbyval had better be false if typlen is not 1, 2, or 4 (or 8 on machines where Datum is 8 bytes). Variable-length types are always passed by reference. Note that typbyval can be false even if the length would allow pass-by-value; this is currently true for type float4 , for example"
::= { pgsqlPgTypeEntry 6 }
pgsqlPgTypeTyptype OBJECT-TYPE
SYNTAX char
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"typtype is b for a base type, c for a composite type (e.g., a table's row type), d for a domain, or p for a pseudo-type. See also typrelid and typbasetype"
::= { pgsqlPgTypeEntry 7 }
pgsqlPgTypeTypisdefined OBJECT-TYPE
SYNTAX bool
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True if the type is defined, false if this is a placeholder entry for a not-yet-defined type. When typisdefined is false, nothing except the type name, namespace, and OID can be relied on"
::= { pgsqlPgTypeEntry 8 }
pgsqlPgTypeTypdelim OBJECT-TYPE
SYNTAX char
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Character that separates two values of this type when parsing array input. Note that the delimiter is associated with the array element data type, not the array data type"
::= { pgsqlPgTypeEntry 9 }
pgsqlPgTypeTyprelid OBJECT-TYPE
SYNTAX oid
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this is a composite type (see typtype ), then this column points to the pg_class entry that defines the corresponding table. (For a free-standing composite type, the pg_class entry doesn't really represent a table, but it is needed anyway for the type's pg_attribute entries to link to.) Zero for non-composite types"
::= { pgsqlPgTypeEntry 10 }
pgsqlPgTypeTypelem OBJECT-TYPE
SYNTAX oid
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If typelem is not 0 then it identifies another row in pg_type . The current type can then be subscripted like an array yielding values of type typelem . A "
::= { pgsqlPgTypeEntry 11 }
pgsqlPgTypeTypinput OBJECT-TYPE
SYNTAX regproc
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Input conversion function (text format)"
::= { pgsqlPgTypeEntry 12 }
pgsqlPgTypeTypoutput OBJECT-TYPE
SYNTAX regproc
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Output conversion function (text format)"
::= { pgsqlPgTypeEntry 13 }
pgsqlPgTypeTypreceive OBJECT-TYPE
SYNTAX regproc
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Input conversion function (binary format), or 0 if none"
::= { pgsqlPgTypeEntry 14 }
pgsqlPgTypeTypsend OBJECT-TYPE
SYNTAX regproc
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Output conversion function (binary format), or 0 if none"
::= { pgsqlPgTypeEntry 15 }
pgsqlPgTypeTypanalyze OBJECT-TYPE
SYNTAX regproc
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Custom ANALYZE function, or 0 to use the standard function"
::= { pgsqlPgTypeEntry 16 }
pgsqlPgTypeTypalign OBJECT-TYPE
SYNTAX char
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"typalign is the alignment required when storing a value of this type. It applies to storage on disk as well as most representations of the value inside PostgreSQL . When multiple values are stored consecutively, such as in the representation of a complete row on disk, padding is inserted before a datum of this type so that it begins on the specified boundary. The alignment reference is the beginning of the first datum in the sequence. Possible values are: c = char alignment, i.e., no alignment needed. s = short alignment (2 bytes on most machines). i = int alignment (4 bytes on most machines). d = double alignment (8 bytes on many machines, but by no means all). Note: For types used in system tables, it is critical that the size and alignment defined in pg_type agree with the way that the compiler will lay out the column in a structure representing a table row."
::= { pgsqlPgTypeEntry 17 }
pgsqlPgTypeTypstorage OBJECT-TYPE
SYNTAX char
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"typstorage tells for varlena types (those with typlen = -1) if the type is prepared for toasting and what the default strategy for attributes of this type should be. Possible values are p : Value must always be stored plain. e : Value can be stored in a "
::= { pgsqlPgTypeEntry 18 }
pgsqlPgTypeTypnotnull OBJECT-TYPE
SYNTAX bool
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"typnotnull represents a not-null constraint on a type. Used for domains only"
::= { pgsqlPgTypeEntry 19 }
pgsqlPgTypeTypbasetype OBJECT-TYPE
SYNTAX oid
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If this is a domain (see typtype ), then typbasetype identifies the type that this one is based on. Zero if this type is not a domain"
::= { pgsqlPgTypeEntry 20 }
pgsqlPgTypeTyptypmod OBJECT-TYPE
SYNTAX int4
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Domains use typtypmod to record the typmod to be applied to their base type (-1 if base type does not use a typmod ). -1 if this type is not a domain"
::= { pgsqlPgTypeEntry 21 }
pgsqlPgTypeTypndims OBJECT-TYPE
SYNTAX int4
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"typndims is the number of array dimensions for a domain that is an array (that is, typbasetype is an array type; the domain's typelem will match the base type's typelem ). Zero for types other than array domains"
::= { pgsqlPgTypeEntry 22 }
pgsqlPgTypeTypdefaultbin OBJECT-TYPE
SYNTAX text
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If typdefaultbin is not null, it is the nodeToString() representation of a default expression for the type. This is only used for domains"
::= { pgsqlPgTypeEntry 23 }
pgsqlPgTypeTypdefault OBJECT-TYPE
SYNTAX text
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"typdefault is null if the type has no associated default value. If typdefaultbin is not null, typdefault must contain a human-readable version of the default expression represented by typdefaultbin . If typdefaultbin is null and typdefault is not, then typdefault is the external representation of the type's default value, which may be fed to the type's input converter to produce a constant"
::= { pgsqlPgTypeEntry 24 }
---------------------------------------
END
|