summaryrefslogtreecommitdiff
path: root/src/include/commands
diff options
context:
space:
mode:
authorVadim B. Mikheev1997-10-28 15:11:45 +0000
committerVadim B. Mikheev1997-10-28 15:11:45 +0000
commit7bff4c50787c52687ad5e23d90c0c5604c57893f (patch)
tree54a990c09ce76f0abf1d5b361369312ace44f848 /src/include/commands
parent9db2992640245b5cecc3311f5d95504d10a86f21 (diff)
Now we are able to CREATE PROCEDURAL LANGUAGE (Thanks, Jan).
Diffstat (limited to 'src/include/commands')
-rw-r--r--src/include/commands/proclang.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/include/commands/proclang.h b/src/include/commands/proclang.h
new file mode 100644
index 00000000000..af6182cccab
--- /dev/null
+++ b/src/include/commands/proclang.h
@@ -0,0 +1,17 @@
+/*-------------------------------------------------------------------------
+ *
+ * proclang.h--
+ * prototypes for proclang.c.
+ *
+ *
+ *-------------------------------------------------------------------------
+ */
+#ifndef PROCLANG_H
+#define PROCLANG_H
+
+#include <nodes/parsenodes.h>
+
+extern void CreateProceduralLanguage(CreatePLangStmt * stmt);
+extern void DropProceduralLanguage(DropPLangStmt * stmt);
+
+#endif /* PROCLANG_H */