diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-03-25 09:44:00 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-03-25 09:44:00 +0000 |
commit | 884d70edf00783d1fc38bbce3429e3fe6667c1d8 (patch) | |
tree | 28b5ce31e1ec81658a7d92d860c82dc0c1f21a1b /src | |
parent | 070381482f177e011ab52cb01ed8e694d9c8fbe5 (diff) |
MIssed adding a file to the repository
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/tcop/variable.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/backend/tcop/variable.c b/src/backend/tcop/variable.c new file mode 100644 index 00000000000..6f279897556 --- /dev/null +++ b/src/backend/tcop/variable.c @@ -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; + } |