projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
502f6f3
)
CREATE/DROP TRIGGER functions
author
Vadim B. Mikheev
Sun, 31 Aug 1997 11:42:21 +0000
(11:42 +0000)
committer
Vadim B. Mikheev
Sun, 31 Aug 1997 11:42:21 +0000
(11:42 +0000)
src/include/commands/trigger.h
[new file with mode: 0644]
patch
|
blob
diff --git a/src/include/commands/trigger.h
b/src/include/commands/trigger.h
new file mode 100644
(file)
index 0000000..
a9d1c73
--- /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 */