]> granicus.if.org Git - postgresql/commitdiff
Add "B" suffix for bytes to docs
authorGreg Stark <stark@mit.edu>
Sat, 6 Oct 2018 17:03:43 +0000 (13:03 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 13 Oct 2018 21:32:54 +0000 (17:32 -0400)
6e7baa3227 and b06d8e58b5 added "B" as a valid suffix for
GUC_UNIT_BYTES but neglected to add it to the docs.

doc/src/sgml/config.sgml

index b268636b5f6beac1f2a1a21f9a6f1bc8e92e40cd..457029b0d4f3c5e6e69730733b5e3890ae719e20 100644 (file)
@@ -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.