aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Stark <stark@mit.edu>2018-10-06 13:03:43 -0400
committerGreg Stark <stark@mit.edu>2018-10-09 11:54:58 -0400
commit36e9d413a1d6928cd809d302d495fd6880a44b1e (patch)
treed081c7f01fe4cbca8d6a56d54bc40817c7f7e9e1
parent6eb4378d53b58658c91e4a31d2511a15e6fbf088 (diff)
downloadpostgresql-36e9d413a1d6928cd809d302d495fd6880a44b1e.tar.gz
postgresql-36e9d413a1d6928cd809d302d495fd6880a44b1e.zip
Add "B" suffix for bytes to docs
6e7baa3227 and b06d8e58b5 added "B" as a valid suffix for GUC_UNIT_BYTES but neglected to add it to the docs.
-rw-r--r--doc/src/sgml/config.sgml5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index f11b8f724cd..7554cba3f96 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -66,7 +66,7 @@
<para>
<emphasis>Numeric with Unit:</emphasis>
Some numeric parameters have an implicit unit, because they describe
- quantities of memory or time. The unit might be kilobytes, blocks
+ quantities of memory or time. The unit might be bytes, kilobytes, blocks
(typically eight kilobytes), milliseconds, seconds, or minutes.
An unadorned numeric value for one of these settings will use the
setting's default unit, which can be learned from
@@ -81,7 +81,8 @@
<itemizedlist>
<listitem>
<para>
- Valid memory units are <literal>kB</literal> (kilobytes),
+ Valid memory units are <literal>B</literal> (bytes),
+ <literal>kB</literal> (kilobytes),
<literal>MB</literal> (megabytes), <literal>GB</literal>
(gigabytes), and <literal>TB</literal> (terabytes).
The multiplier for memory units is 1024, not 1000.