diff options
Diffstat (limited to 'pgsql_mib_pieces/pg_depend.tbldef')
-rw-r--r-- | pgsql_mib_pieces/pg_depend.tbldef | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pgsql_mib_pieces/pg_depend.tbldef b/pgsql_mib_pieces/pg_depend.tbldef new file mode 100644 index 0000000..6afa4b4 --- /dev/null +++ b/pgsql_mib_pieces/pg_depend.tbldef @@ -0,0 +1,8 @@ +pg_depend "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." "Dependancy entry" pgsqlCatalogTables 15 "pgsnmpdConnID, rdbmsDbIndex, pgsqlPgDependClassid, pgsqlPgDependObjid" +classid INTEGER "The OID of the system catalog the dependent object is in" +objid INTEGER "The OID of the specific dependent object" +objsubid INTEGER "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" +refclassid INTEGER "The OID of the system catalog the referenced object is in" +refobjid INTEGER "The OID of the specific referenced object" +refobjsubid INTEGER "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" +deptype char "A code defining the specific semantics of this dependency relationship; see text" |