mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Add ddl_command_end support for event triggers.
Dimitri Fontaine, with slight changes by me
This commit is contained in:
@@ -41,5 +41,6 @@ extern void AlterEventTriggerOwner_oid(Oid, Oid newOwnerId);
|
||||
|
||||
extern bool EventTriggerSupportsObjectType(ObjectType obtype);
|
||||
extern void EventTriggerDDLCommandStart(Node *parsetree);
|
||||
extern void EventTriggerDDLCommandEnd(Node *parsetree);
|
||||
|
||||
#endif /* EVENT_TRIGGER_H */
|
||||
|
@@ -18,7 +18,8 @@
|
||||
|
||||
typedef enum
|
||||
{
|
||||
EVT_DDLCommandStart
|
||||
EVT_DDLCommandStart,
|
||||
EVT_DDLCommandEnd
|
||||
} EventTriggerEvent;
|
||||
|
||||
typedef struct
|
||||
|
Reference in New Issue
Block a user