MIssed adding a file to the repository
authorMarc G. Fournier
Tue, 25 Mar 1997 09:44:00 +0000 (09:44 +0000)
committerMarc G. Fournier
Tue, 25 Mar 1997 09:44:00 +0000 (09:44 +0000)
src/backend/tcop/variable.c [new file with mode: 0644]

diff --git a/src/backend/tcop/variable.c b/src/backend/tcop/variable.c
new file mode 100644 (file)
index 0000000..6f27989
--- /dev/null
@@ -0,0 +1,12 @@
+#include "postgres.h"
+#include "tcop/variable.h"
+
+bool SetPGVariable(const char *varName, const char *value)
+   {
+   return TRUE;
+   }
+
+const char *GetPGVariable(const char *varName)
+   {
+   return NULL;
+   }