1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-21 02:52:47 +03:00

Rename wal_log_hintbits to wal_log_hints, per discussion on pgsql-hackers.

Sawada Masahiko
This commit is contained in:
Fujii Masao
2013-12-21 03:33:16 +09:00
parent 6130208e75
commit 961bf59fb7
10 changed files with 22 additions and 22 deletions

View File

@@ -872,11 +872,11 @@ static struct config_bool ConfigureNamesBool[] =
},
{
{"wal_log_hintbits", PGC_POSTMASTER, WAL_SETTINGS,
{"wal_log_hints", PGC_POSTMASTER, WAL_SETTINGS,
gettext_noop("Writes full pages to WAL when first modified after a checkpoint, even for a non-critical modifications"),
NULL
},
&walLogHintbits,
&walLogHints,
false,
NULL, NULL, NULL
},

View File

@@ -184,7 +184,7 @@
# fsync_writethrough
# open_sync
#full_page_writes = on # recover from partial page writes
#wal_log_hintbits = off # also do full pages writes of non-critical updates
#wal_log_hints = off # also do full pages writes of non-critical updates
#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers
# (change requires restart)
#wal_writer_delay = 200ms # 1-10000 milliseconds