pg_trigger
pg_trigger#
The pg_trigger
system catalog table stores triggers on tables.
Note Greenplum Database does not support triggers.
column |
type |
references |
description |
---|---|---|---|
|
oid |
The object ID |
|
|
oid |
pg_class.oid |
The table this trigger is on. |
|
name |
Trigger name (must be unique among triggers of same table). |
|
|
oid |
pg_proc.oid |
The function to be called. |
|
smallint |
Bit mask identifying trigger conditions. |
|
|
char |
True if trigger is enabled. |
|
|
boolean |
True if trigger is internally generated (usually, to enforce the constraint identified by tgconstraint). |
|
|
oid |
pg_class.oid |
The table referenced by an referential integrity constraint. |
|
oid |
pg_class.oid |
The index supporting a unique, primary key, or referential integrity constraint. |
|
oid |
pg_constraint.oid |
The |
|
boolean |
True if deferrable. |
|
|
boolean |
True if initially deferred. |
|
|
smallint |
Number of argument strings passed to trigger function. |
|
|
int2vector |
Currently not used. |
|
|
bytea |
Argument strings to pass to trigger, each NULL-terminated. |
|
|
pg_node_tree |
Expression tree (in |
|
|
name |
The name of the old transition table, or NULL if none. |
|
|
name |
The name of the new transition table, or NULL if none. |
Parent topic: System Catalogs Definitions