mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
CREATE/DROP TRIGGER functions
This commit is contained in:
parent
502f6f3889
commit
bcf03a7ed6
1 changed files with 15 additions and 0 deletions
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 */
|
||||
Loading…
Reference in a new issue