mirror of
https://github.com/postgres/postgres.git
synced 2025-07-21 16:02:15 +03:00
CREATE/DROP TRIGGER functions
This commit is contained in:
15
src/include/commands/trigger.h
Normal file
15
src/include/commands/trigger.h
Normal file
@ -0,0 +1,15 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* trigger.h--
|
||||
* prototypes for trigger.c.
|
||||
*
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef TRIGGER_H
|
||||
#define TRIGGER_H
|
||||
|
||||
extern void CreateTrigger (CreateTrigStmt *stmt);
|
||||
extern void DropTrigger (DropTrigStmt *stmt);
|
||||
|
||||
#endif /* TRIGGER_H */
|
Reference in New Issue
Block a user