diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-08-09 05:01:10 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-08-09 05:01:10 +0000 |
commit | 833d91ae5e811f923d341dbcf1c89a34d6cdbae5 (patch) | |
tree | 1f004eff9bc103e705f7ab5f43b211299be6eac3 /doc/src | |
parent | df24e9393331b080efc53009c47132a4752d2fce (diff) | |
download | postgresql-833d91ae5e811f923d341dbcf1c89a34d6cdbae5.tar.gz postgresql-833d91ae5e811f923d341dbcf1c89a34d6cdbae5.zip |
Fix ordering of default sync options to match code.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/runtime.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 299fc28a7db..87a97639632 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.342 2005/08/09 04:50:43 momjian Exp $ +$PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.343 2005/08/09 05:01:10 momjian Exp $ --> <chapter Id="runtime"> @@ -1744,12 +1744,12 @@ SET ENABLE_SEQSCAN TO OFF; </listitem> <listitem> <para> - <literal>open_sync</> (write WAL files with <function>open()</> option <symbol>O_SYNC</>) + <literal>fsync_writethrough</> (force write-through of any disk write cache) </para> </listitem> <listitem> <para> - <literal>fsync_writethrough</> (force write-through of any disk write cache) + <literal>open_sync</> (write WAL files with <function>open()</> option <symbol>O_SYNC</>) </para> </listitem> </itemizedlist> |