aboutsummaryrefslogtreecommitdiff
path: root/src/include/commands/variable.h
blob: c9b39d93cb5f65f6b4638d172d346c3d6a8ae839 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var'
 * statements
 *
 * $Id: variable.h,v 1.9 2000/02/19 22:10:43 tgl Exp $
 *
 */
#ifndef VARIABLE_H
#define VARIABLE_H 1

extern bool SetPGVariable(const char *name, const char *value);
extern bool GetPGVariable(const char *name);
extern bool ResetPGVariable(const char *name);

extern void set_default_datestyle(void);

#endif	 /* VARIABLE_H */