The pg_shdepend
system catalog table records the dependency relationships between database objects and shared objects, such as roles. This information allows Greenplum Database 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 Greenplum system: there is only one copy of pg_shdepend
per system, not one per database.
In all cases, a pg_shdepend
entry indicates that the referenced object may not be dropped without also dropping the dependent object. However, there are several subflavors identified by deptype
:
column | type | references | description |
---|---|---|---|
dbid |
oid | pg_database.oid | The OID of the database the dependent object is in, or zero for a shared object. |
classid |
oid | pg_class.oid | The OID of the system catalog the dependent object is in. |
objid |
oid | any OID column | The OID of the specific dependent object. |
objsubid |
integer | For a table column, this is the column number. For all other object types, this column is zero. | |
refclassid |
oid | pg_class.oid | The OID of the system catalog the referenced object is in (must be a shared catalog). |
refobjid |
oid | any OID column | The OID of the specific referenced object. |
deptype |
char | A code defining the specific semantics of this dependency relationship. |
Parent topic: System Catalogs Definitions