mirror of
https://github.com/postgres/postgres.git
synced 2025-04-21 12:05:57 +03:00
doc: Fix description of BUFFER_USAGE_LIMIT for VACUUM and ANALYZE
BUFFER_USAGE_LIMIT requires a parameter, and 'B' is a supported unit. Author: Ryoga Yoshida Reviewed-by: Shinya Kato Discussion: https://postgr.es/m/9374034cb91b647b55a774a8980b0228@oss.nttdata.com Backpatch-through: 16
This commit is contained in:
parent
64276c7e45
commit
3701db77a0
@ -28,7 +28,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
|
|||||||
|
|
||||||
VERBOSE [ <replaceable class="parameter">boolean</replaceable> ]
|
VERBOSE [ <replaceable class="parameter">boolean</replaceable> ]
|
||||||
SKIP_LOCKED [ <replaceable class="parameter">boolean</replaceable> ]
|
SKIP_LOCKED [ <replaceable class="parameter">boolean</replaceable> ]
|
||||||
BUFFER_USAGE_LIMIT [ <replaceable class="parameter">size</replaceable> ]
|
BUFFER_USAGE_LIMIT <replaceable class="parameter">size</replaceable>
|
||||||
|
|
||||||
<phrase>and <replaceable class="parameter">table_and_columns</replaceable> is:</phrase>
|
<phrase>and <replaceable class="parameter">table_and_columns</replaceable> is:</phrase>
|
||||||
|
|
||||||
@ -136,9 +136,9 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
|
|||||||
<para>
|
<para>
|
||||||
Specifies an amount of memory in kilobytes. Sizes may also be specified
|
Specifies an amount of memory in kilobytes. Sizes may also be specified
|
||||||
as a string containing the numerical size followed by any one of the
|
as a string containing the numerical size followed by any one of the
|
||||||
following memory units: <literal>kB</literal> (kilobytes),
|
following memory units: <literal>B</literal> (bytes),
|
||||||
<literal>MB</literal> (megabytes), <literal>GB</literal> (gigabytes), or
|
<literal>kB</literal> (kilobytes), <literal>MB</literal> (megabytes),
|
||||||
<literal>TB</literal> (terabytes).
|
<literal>GB</literal> (gigabytes), or <literal>TB</literal> (terabytes).
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
@ -39,7 +39,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
|
|||||||
PARALLEL <replaceable class="parameter">integer</replaceable>
|
PARALLEL <replaceable class="parameter">integer</replaceable>
|
||||||
SKIP_DATABASE_STATS [ <replaceable class="parameter">boolean</replaceable> ]
|
SKIP_DATABASE_STATS [ <replaceable class="parameter">boolean</replaceable> ]
|
||||||
ONLY_DATABASE_STATS [ <replaceable class="parameter">boolean</replaceable> ]
|
ONLY_DATABASE_STATS [ <replaceable class="parameter">boolean</replaceable> ]
|
||||||
BUFFER_USAGE_LIMIT [ <replaceable class="parameter">size</replaceable> ]
|
BUFFER_USAGE_LIMIT <replaceable class="parameter">size</replaceable>
|
||||||
|
|
||||||
<phrase>and <replaceable class="parameter">table_and_columns</replaceable> is:</phrase>
|
<phrase>and <replaceable class="parameter">table_and_columns</replaceable> is:</phrase>
|
||||||
|
|
||||||
@ -399,9 +399,9 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
|
|||||||
<para>
|
<para>
|
||||||
Specifies an amount of memory in kilobytes. Sizes may also be specified
|
Specifies an amount of memory in kilobytes. Sizes may also be specified
|
||||||
as a string containing the numerical size followed by any one of the
|
as a string containing the numerical size followed by any one of the
|
||||||
following memory units: <literal>kB</literal> (kilobytes),
|
following memory units: <literal>B</literal> (bytes),
|
||||||
<literal>MB</literal> (megabytes), <literal>GB</literal> (gigabytes), or
|
<literal>kB</literal> (kilobytes), <literal>MB</literal> (megabytes),
|
||||||
<literal>TB</literal> (terabytes).
|
<literal>GB</literal> (gigabytes), or <literal>TB</literal> (terabytes).
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user