mirror of
https://github.com/postgres/postgres.git
synced 2026-04-24 15:47:01 -04:00
MIssed adding a file to the repository
This commit is contained in:
parent
070381482f
commit
884d70edf0
1 changed files with 12 additions and 0 deletions
12
src/backend/tcop/variable.c
Normal file
12
src/backend/tcop/variable.c
Normal 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;
|
||||
}
|
||||
Loading…
Reference in a new issue