DROP_EVENT_TRIGGER
remove an event trigger
- Provided by: postgresql-client-12 (Version: 12.22-0ubuntu0.20.04.4)
- Source: postgresql-12
- Report a bug
remove an event trigger
DROP EVENT TRIGGER [ IF EXISTS ] name [ CASCADE | RESTRICT ]
DROP EVENT TRIGGER removes an existing event trigger. To execute this command, the current user must be the owner of the event trigger.
IF EXISTS
name
CASCADE
RESTRICT
Destroy the trigger snitch:
DROP EVENT TRIGGER snitch;
There is no DROP EVENT TRIGGER statement in the SQL standard.
CREATE EVENT TRIGGER (CREATE_EVENT_TRIGGER(7)), ALTER EVENT TRIGGER (ALTER_EVENT_TRIGGER(7))