diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-03-23 13:38:14 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-03-23 13:38:14 +0900 |
commit | 26a26d9f2b20c2fab60ecb67e2f385abb784cc43 (patch) | |
tree | 3aaa30bd53aaff8ce264636751ea3f8fb40a7060 | |
parent | 2fbdebc248ec0694b1399f9bb2e317835baca066 (diff) |
Doc: Fix type of some storage parameters in CREATE TABLE page
autovacuum_vacuum_scale_factor and autovacuum_analyze_scale_factor have
been documented as "float4", but "floating type" is used in this case
for GUCs and relation options in the documentation.
Author: Atsushi Torikoshi
Discussion: https://postgr.es/m/CACZ0uYFf_p9BpbjLccx3CA=eM1Hk2Te=ULY4iptGLUhL-JxCPA@mail.gmail.com
Backpatch-through: 9.5
-rw-r--r-- | doc/src/sgml/ref/create_table.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 8ff5cb6136d..0b9c46ce23d 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -1319,7 +1319,7 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM </varlistentry> <varlistentry> - <term><literal>autovacuum_vacuum_scale_factor</literal>, <literal>toast.autovacuum_vacuum_scale_factor</literal> (<type>float4</type>)</term> + <term><literal>autovacuum_vacuum_scale_factor</literal>, <literal>toast.autovacuum_vacuum_scale_factor</literal> (<type>floating point</type>)</term> <listitem> <para> Per-table value for <xref linkend="guc-autovacuum-vacuum-scale-factor"/> @@ -1339,7 +1339,7 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM </varlistentry> <varlistentry> - <term><literal>autovacuum_analyze_scale_factor</literal> (<type>float4</type>)</term> + <term><literal>autovacuum_analyze_scale_factor</literal> (<type>floating point</type>)</term> <listitem> <para> Per-table value for <xref linkend="guc-autovacuum-analyze-scale-factor"/> |