From: Marc G. Fournier Date: Tue, 25 Mar 1997 09:44:00 +0000 (+0000) Subject: MIssed adding a file to the repository X-Git-Tag: REL6_1~426 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=884d70edf00783d1fc38bbce3429e3fe6667c1d8;p=thirdparty%2Fpostgresql.git MIssed adding a file to the repository --- 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; + }