diff options
Diffstat (limited to 'src/include/tcop/variable.h')
-rw-r--r-- | src/include/tcop/variable.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/tcop/variable.h b/src/include/tcop/variable.h index a687d8fed6f..4792cac9656 100644 --- a/src/include/tcop/variable.h +++ b/src/include/tcop/variable.h @@ -2,7 +2,7 @@ * Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var' * statements * - * $Id: variable.h,v 1.5 1997/09/07 05:02:01 momjian Exp $ + * $Id: variable.h,v 1.6 1997/09/08 02:39:21 momjian Exp $ * */ @@ -16,14 +16,14 @@ 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 *); |