MIssed adding a file to the repository

This commit is contained in:
Marc G. Fournier 1997-03-25 09:44:00 +00:00
parent 070381482f
commit 884d70edf0
1 changed files with 12 additions and 0 deletions

View File

@ -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;
}