4 ALTER EVENT TRIGGER — change the definition of an event trigger
8 ALTER EVENT TRIGGER name DISABLE
9 ALTER EVENT TRIGGER name ENABLE [ REPLICA | ALWAYS ]
10 ALTER EVENT TRIGGER name OWNER TO { new_owner | CURRENT_ROLE | CURRENT_USER | SE
12 ALTER EVENT TRIGGER name RENAME TO new_name
16 ALTER EVENT TRIGGER changes properties of an existing event trigger.
18 You must be superuser to alter an event trigger.
23 The name of an existing trigger to alter.
26 The user name of the new owner of the event trigger.
29 The new name of the event trigger.
31 DISABLE/ENABLE [ REPLICA | ALWAYS ]
32 These forms configure the firing of event triggers. A disabled
33 trigger is still known to the system, but is not executed when
34 its triggering event occurs. See also session_replication_role.
38 There is no ALTER EVENT TRIGGER statement in the SQL standard.
42 CREATE EVENT TRIGGER, DROP EVENT TRIGGER