Home > Software engineering >  How to list all event triggers(DDL Triggers) present in a database in postgres
How to list all event triggers(DDL Triggers) present in a database in postgres

Time:08-04

If we query pg_trigger then we dont get the event triggers, we get list of only normal triggers. So is there any other specific table where we can check the event triggers.

CodePudding user response:

These are available in system table pg_event_trigger

  • Related