diff options
author | Andres Freund <andres@anarazel.de> | 2018-11-09 19:24:05 -0800 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2018-11-09 19:30:36 -0800 |
commit | 431b25c9b123e2b41bab5c43f5e71996d0a7889e (patch) | |
tree | b274a8eb5b5e079168b18587463c2ccb67181579 | |
parent | 8e02ee788fb5a4aa8be9deb5c0af5ab5ac40007b (diff) |
docs: Adapt wal_segment_size docs to fc49e24fa69.
Before this change the docs weren't adapted to the fact that
wal_segment_size is now measured in bytes, rather than multiples of
wal_block_size.
Author: David Steele
Discussion: https://postgr.es/m/68ea97d6-2ed9-f339-e57d-ab3a33caf3b1@pgmasters.net
Backpatch: 11-, like fc49e24fa69 itself.
-rw-r--r-- | doc/src/sgml/config.sgml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index f5271609013..bd282487a83 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -8395,11 +8395,8 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' </term> <listitem> <para> - Reports the number of blocks (pages) in a WAL segment file. - The total size of a WAL segment file in bytes is equal to - <varname>wal_segment_size</varname> multiplied by <varname>wal_block_size</varname>; - by default this is 16MB. See <xref linkend="wal-configuration"/> for - more information. + Reports the size of write ahead log segments. The default value is + 16MB. See <xref linkend="wal-configuration"/> for more information. </para> </listitem> </varlistentry> |