1ALTER EVENT TRIGGER(7)   PostgreSQL 11.6 Documentation  ALTER EVENT TRIGGER(7)
2
3
4

NAME

6       ALTER_EVENT_TRIGGER - change the definition of an event trigger
7

SYNOPSIS

9       ALTER EVENT TRIGGER name DISABLE
10       ALTER EVENT TRIGGER name ENABLE [ REPLICA | ALWAYS ]
11       ALTER EVENT TRIGGER name OWNER TO { new_owner | CURRENT_USER | SESSION_USER }
12       ALTER EVENT TRIGGER name RENAME TO new_name
13

DESCRIPTION

15       ALTER EVENT TRIGGER changes properties of an existing event trigger.
16
17       You must be superuser to alter an event trigger.
18

PARAMETERS

20       name
21           The name of an existing trigger to alter.
22
23       new_owner
24           The user name of the new owner of the event trigger.
25
26       new_name
27           The new name of the event trigger.
28
29       DISABLE/ENABLE [ REPLICA | ALWAYS ] TRIGGER
30           These forms configure the firing of event triggers. A disabled
31           trigger is still known to the system, but is not executed when its
32           triggering event occurs. See also session_replication_role.
33

COMPATIBILITY

35       There is no ALTER EVENT TRIGGER statement in the SQL standard.
36

SEE ALSO

38       CREATE EVENT TRIGGER (CREATE_EVENT_TRIGGER(7)), DROP EVENT TRIGGER
39       (DROP_EVENT_TRIGGER(7))
40
41
42
43PostgreSQL 11.6                      2019               ALTER EVENT TRIGGER(7)
Impressum