diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-01-24 09:55:51 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-01-24 09:55:51 +0900 |
commit | c4c76d198e3db48ac390a46eab66bcaf1d734a2c (patch) | |
tree | 232a0356091d790fdd14e51917a1c5ba0a7f4359 | |
parent | f309c812ed3106def62e940ca54718c7eeda8694 (diff) | |
download | postgresql-c4c76d198e3db48ac390a46eab66bcaf1d734a2c.tar.gz postgresql-c4c76d198e3db48ac390a46eab66bcaf1d734a2c.zip |
Doc: Fix list of storage parameters available for ALTER TABLE
Only the parameter parallel_workers can be used directly with ALTER
TABLE.
Issue introduced in 6f3a13f, so backpatch down to 10.
Author: Justin Pryzby
Discussion: https://postgr.es/m/20200106025623.GA12066@telsasoft.com
Backpatch-through: 10
-rw-r--r-- | doc/src/sgml/ref/alter_table.sgml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index 44bbfe790e6..00ee5a0a1ef 100644 --- a/doc/src/sgml/ref/alter_table.sgml +++ b/doc/src/sgml/ref/alter_table.sgml @@ -696,9 +696,7 @@ WITH ( MODULUS <replaceable class="parameter">numeric_literal</replaceable>, REM <para> <literal>SHARE UPDATE EXCLUSIVE</literal> lock will be taken for fillfactor, toast and autovacuum storage parameters, as well as the - following planner related parameters: - <varname>effective_io_concurrency</varname>, <varname>parallel_workers</varname>, <varname>seq_page_cost</varname>, - <varname>random_page_cost</varname>, <varname>n_distinct</varname> and <varname>n_distinct_inherited</varname>. + planner parameter <varname>parallel_workers</varname>. </para> </listitem> </varlistentry> |