postgresql/src/include/commands/variable.h

18 lines
415 B
C
Raw Normal View History

/*
* Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var'
1997-04-23 07:52:32 +02:00
* 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 */