diff options
Diffstat (limited to 'pgsql_mib_pieces/pg_largeobject.tbldef')
-rw-r--r-- | pgsql_mib_pieces/pg_largeobject.tbldef | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pgsql_mib_pieces/pg_largeobject.tbldef b/pgsql_mib_pieces/pg_largeobject.tbldef new file mode 100644 index 0000000..fb96811 --- /dev/null +++ b/pgsql_mib_pieces/pg_largeobject.tbldef @@ -0,0 +1,4 @@ +-- 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 +pg_largeobject "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)." "Represents a page from a large object" pgsqlCatalogTables 20 "pgsnmpdConnID, rdbmsDbIndex, pgsqlPgLargeobjectLoid" +loid INTEGER "Identifier of the large object that includes this page" +pageno INTEGER "Page number of this page within its large object (counting from zero)" |