blob: e3041361394d87614a16aa04d568b04c0063e9fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "postgres.h"
#include "tcop/variable.h"
bool SetPGVariable(const char *name, const char *value)
{
elog(NOTICE, "Variable %s set to \"%s\"", name, value);
return TRUE;
}
const char *GetPGVariable(const char *varName)
{
return NULL;
}
|