diff options
author | Jan Wieck <JanWieck@Yahoo.com> | 2004-02-04 01:24:53 +0000 |
---|---|---|
committer | Jan Wieck <JanWieck@Yahoo.com> | 2004-02-04 01:24:53 +0000 |
commit | 8d09e25693615320f03f3b1fd3412a90cbaa28b7 (patch) | |
tree | 31c6ba8d8f249596ca73af58797ba159c8a5134f /src/backend/utils/misc/guc.c | |
parent | e66fcce67272f5aece55e834b34ed318b67f921b (diff) |
Backing out the background writer sync() option.
Jan
Diffstat (limited to 'src/backend/utils/misc/guc.c')
-rw-r--r-- | src/backend/utils/misc/guc.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 7a0deef9bbc..eb79ea2c627 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -10,7 +10,7 @@ * Written by Peter Eisentraut <peter_e@gmx.net>. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.184 2004/02/03 17:34:03 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.185 2004/02/04 01:24:53 wieck Exp $ * *-------------------------------------------------------------------- */ @@ -95,8 +95,6 @@ static const char *assign_msglvl(int *var, const char *newval, static const char *assign_log_error_verbosity(const char *newval, bool doit, GucSource source); static bool assign_phony_autocommit(bool newval, bool doit, GucSource source); -extern const char *BgWriterAssignSyncMethod(const char *method, - bool doit, GucSource source); /* @@ -1691,15 +1689,6 @@ static struct config_string ConfigureNamesString[] = XLOG_sync_method_default, assign_xlog_sync_method, NULL }, - { - {"bgwriter_flush_method", PGC_SIGHUP, RESOURCES, - gettext_noop("Selects the method used by the bgwriter for forcing writes out to disk."), - NULL - }, - &BgWriterFlushMethod_str, - BgWriterFlushMethod_default, BgWriterAssignSyncMethod, NULL - }, - /* End-of-list marker */ { {NULL, 0, 0, NULL, NULL}, NULL, NULL, NULL, NULL |