From bcf03a7ed635cc50add451436ab449df701bb934 Mon Sep 17 00:00:00 2001 From: "Vadim B. Mikheev" Date: Sun, 31 Aug 1997 11:42:21 +0000 Subject: [PATCH] CREATE/DROP TRIGGER functions --- src/include/commands/trigger.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/include/commands/trigger.h diff --git a/src/include/commands/trigger.h b/src/include/commands/trigger.h new file mode 100644 index 00000000000..a9d1c736798 --- /dev/null +++ b/src/include/commands/trigger.h @@ -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 */ -- 2.39.5