]> begriffs open source - ai-pg/blob - full-docs/txt/catalog-pg-event-trigger.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / catalog-pg-event-trigger.txt
1
2 52.21. pg_event_trigger #
3
4    The catalog pg_event_trigger stores event triggers. See Chapter 38 for
5    more information.
6
7    Table 52.21. pg_event_trigger Columns
8
9    Column Type
10
11    Description
12
13    oid oid
14
15    Row identifier
16
17    evtname name
18
19    Trigger name (must be unique)
20
21    evtevent name
22
23    Identifies the event for which this trigger fires
24
25    evtowner oid (references pg_authid.oid)
26
27    Owner of the event trigger
28
29    evtfoid oid (references pg_proc.oid)
30
31    The function to be called
32
33    evtenabled char
34
35    Controls in which session_replication_role modes the event trigger
36    fires. O = trigger fires in “origin” and “local” modes, D = trigger is
37    disabled, R = trigger fires in “replica” mode, A = trigger fires
38    always.
39
40    evttags text[]
41
42    Command tags for which this trigger will fire. If NULL, the firing of
43    this trigger is not restricted on the basis of the command tag.