diff options
Diffstat (limited to 'src/include/tcop/variable.h')
-rw-r--r-- | src/include/tcop/variable.h | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/src/include/tcop/variable.h b/src/include/tcop/variable.h index a0f10801eac..a687d8fed6f 100644 --- a/src/include/tcop/variable.h +++ b/src/include/tcop/variable.h @@ -1,26 +1,29 @@ /* - * Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var' + * Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var' * statements * - * $Id: variable.h,v 1.4 1997/04/23 05:52:32 vadim Exp $ + * $Id: variable.h,v 1.5 1997/09/07 05:02:01 momjian Exp $ * */ -enum DateFormat { Date_Postgres, Date_SQL, Date_ISO }; +enum DateFormat +{ + Date_Postgres, Date_SQL, Date_ISO +}; /*-----------------------------------------------------------------------*/ struct PGVariables - { +{ struct - { - bool euro; + { + bool euro; enum DateFormat format; - } date; - }; + } date; +}; extern struct PGVariables PGVariables; /*-----------------------------------------------------------------------*/ -bool SetPGVariable(const char *, const char *); -bool GetPGVariable(const char *); -bool ResetPGVariable(const char *); +bool SetPGVariable(const char *, const char *); +bool GetPGVariable(const char *); +bool ResetPGVariable(const char *); |