aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-08-09 05:43:52 +0000
committerBruce Momjian <bruce@momjian.us>2005-08-09 05:43:52 +0000
commit1c695470151b9c853ea938577b588f9699d8fbf5 (patch)
tree6eb9a5f0268e3f4b67133f5a42d51a379c4454eb /src
parentd359facb05d6a7109e98f5eed5836e851de7324f (diff)
downloadpostgresql-1c695470151b9c853ea938577b588f9699d8fbf5.tar.gz
postgresql-1c695470151b9c853ea938577b588f9699d8fbf5.zip
Update postgresql.conf to show default ordering for wal_sync_method.
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/misc/postgresql.conf.sample7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample
index 5eabe09552e..7eea5513c2b 100644
--- a/src/backend/utils/misc/postgresql.conf.sample
+++ b/src/backend/utils/misc/postgresql.conf.sample
@@ -123,9 +123,10 @@
# - Settings -
#fsync = on # turns forced synchronization on or off
-#wal_sync_method = fsync # the default varies across platforms:
- # fsync, fdatasync, fsync_writethrough,
- # open_sync, open_datasync
+#wal_sync_method = fsync # the default is the first option supported
+ # by the operating system: open_datasync,
+ # fdatasync, fsync, fsync_writethrough,
+ # open_sync
#full_page_writes = on # recover from partial page writes
#wal_buffers = 8 # min 4, 8KB each
#commit_delay = 0 # range 0-100000, in microseconds