diff options
Diffstat (limited to 'src/include/utils/guc.h')
-rw-r--r-- | src/include/utils/guc.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/include/utils/guc.h b/src/include/utils/guc.h index 176fa7c893..ecb883d105 100644 --- a/src/include/utils/guc.h +++ b/src/include/utils/guc.h @@ -4,7 +4,7 @@ * External declarations pertaining to backend/utils/misc/guc.c and * backend/utils/misc/guc-file.l * - * $Id: guc.h,v 1.10 2001/09/30 20:16:21 tgl Exp $ + * $Id: guc.h,v 1.11 2001/10/25 05:50:10 momjian Exp $ */ #ifndef GUC_H #define GUC_H @@ -39,22 +39,22 @@ */ typedef enum { - PGC_POSTMASTER, - PGC_SIGHUP, - PGC_BACKEND, - PGC_SUSET, - PGC_USERSET + PGC_POSTMASTER, + PGC_SIGHUP, + PGC_BACKEND, + PGC_SUSET, + PGC_USERSET } GucContext; extern void SetConfigOption(const char *name, const char *value, - GucContext context, bool makeDefault); + GucContext context, bool makeDefault); extern const char *GetConfigOption(const char *name); extern void ProcessConfigFile(GucContext context); extern void ResetAllOptions(bool isStartup); extern void ParseLongOption(const char *string, char **name, char **value); extern bool set_config_option(const char *name, const char *value, - GucContext context, bool DoIt, bool makeDefault); + GucContext context, bool DoIt, bool makeDefault); extern void ShowAllGUCConfig(void); @@ -72,5 +72,4 @@ extern bool Show_btree_build_stats; extern bool SQL_inheritance; extern bool Australian_timezones; - #endif /* GUC_H */ |