From 5e45211a64149b3c659b90ff2de6fa982a5a93ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:17:33 +0200 Subject: Adding upstream version 15.5. Signed-off-by: Daniel Baumann --- doc/src/sgml/html/catalog-pg-event-trigger.html | 53 +++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 doc/src/sgml/html/catalog-pg-event-trigger.html (limited to 'doc/src/sgml/html/catalog-pg-event-trigger.html') diff --git a/doc/src/sgml/html/catalog-pg-event-trigger.html b/doc/src/sgml/html/catalog-pg-event-trigger.html new file mode 100644 index 0000000..ad892a2 --- /dev/null +++ b/doc/src/sgml/html/catalog-pg-event-trigger.html @@ -0,0 +1,53 @@ + +53.21. pg_event_trigger

53.21. pg_event_trigger

+ The catalog pg_event_trigger stores event triggers. + See Chapter 40 for more information. +

Table 53.21. pg_event_trigger Columns

+ Column Type +

+

+ Description +

+ oid oid +

+

+ Row identifier +

+ evtname name +

+

+ Trigger name (must be unique) +

+ evtevent name +

+

+ Identifies the event for which this trigger fires +

+ evtowner oid + (references pg_authid.oid) +

+

+ Owner of the event trigger +

+ evtfoid oid + (references pg_proc.oid) +

+

+ The function to be called +

+ evtenabled char +

+

+ Controls in which session_replication_role modes + the event trigger fires. + O = trigger fires in origin and local modes, + D = trigger is disabled, + R = trigger fires in replica mode, + A = trigger fires always. +

+ evttags text[] +

+

+ Command tags for which this trigger will fire. If NULL, the firing + of this trigger is not restricted on the basis of the command tag. +


\ No newline at end of file -- cgit v1.2.3