blob: a9d1c736798902478df16d1f07c53e8706e044f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 */
|