pg_trigger
pg_trigger#
The pg_trigger system catalog table stores triggers on tables.
Note: OushuDB does not support triggers.
Table 1. pg_catalog.pg_trigger
column |
type |
references |
description |
|---|---|---|---|
|
oid |
pg_class_internal.oidNote that OushuDB does not enforce referential integrity. |
The table this trigger is on. |
|
name |
Trigger name (must be unique among triggers of same table). |
|
|
oid |
pg_proc.oidNote that OushuDB does not enforce referential integrity. |
The function to be called. |
|
smallint |
Bit mask identifying trigger conditions. |
|
|
boolean |
True if trigger is enabled. |
|
|
boolean |
True if trigger implements a referential integrity constraint. |
|
|
name |
Referential integrity constraint name. |
|
|
oid |
pg_class_internal.oidNote that OushuDB does not enforce referential integrity. |
The table referenced by an referential integrity constraint. |
|
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. |