diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-06-07 04:50:57 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-06-07 04:50:57 +0000 |
commit | 4ee76ad88463e21fdb317e611f9ddc5706f4e792 (patch) | |
tree | 2bf7d35e67ebdef9b31c5506859ad34a6181201f /src/backend/utils/misc/guc-file.l | |
parent | d927ed20c26678e9fc7b4c2fe89c637dd12b285a (diff) | |
download | postgresql-4ee76ad88463e21fdb317e611f9ddc5706f4e792.tar.gz postgresql-4ee76ad88463e21fdb317e611f9ddc5706f4e792.zip |
reset all: command line and .conf options change defaults
on RESET ALL those are restored.
show all: GUC + non-GUC.
SHOW ALL, RESET ALL
Marko Kreen
Diffstat (limited to 'src/backend/utils/misc/guc-file.l')
-rw-r--r-- | src/backend/utils/misc/guc-file.l | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/utils/misc/guc-file.l b/src/backend/utils/misc/guc-file.l index cb39525df92..950dbb6ef92 100644 --- a/src/backend/utils/misc/guc-file.l +++ b/src/backend/utils/misc/guc-file.l @@ -4,7 +4,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc-file.l,v 1.7 2001/06/01 20:29:43 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc-file.l,v 1.8 2001/06/07 04:50:57 momjian Exp $ */ %{ @@ -260,13 +260,13 @@ ProcessConfigFile(GucContext context) */ for(item = head; item; item=item->next) { - if (!set_config_option(item->name, item->value, context, false)) + if (!set_config_option(item->name, item->value, context, false, false)) goto cleanup_exit; } /* If we got here all the options parsed okay. */ for(item = head; item; item=item->next) - set_config_option(item->name, item->value, context, true); + set_config_option(item->name, item->value, context, true, true); cleanup_exit: free_name_value_list(head); |