diff options
author | Michael Paquier <michael@paquier.xyz> | 2024-05-23 13:03:16 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2024-05-23 13:03:16 +0900 |
commit | c0df15ac7e9ef3870da50fde49c658290f7a0da6 (patch) | |
tree | 1b148a5b46ac6aaa4afe976c01581c81e2af96af | |
parent | 2f3cfcf7677ff11ca0ca18b67bd8fc1ea6ae6dd5 (diff) |
doc: Fix column_name parameter in ALTER MATERIALIZED VIEW
Parameter column_name must be an existing column because ALTER
MATERIALIZED VIEW cannot add new columns. The old description was
likely copied from ALTER TABLE.
Author: Erik Wienhold
Discussion: https://postgr.es/m/6880ca53-7961-4eeb-86d5-6bd05fc2027e@ewie.name
Backpatch-through: 12
-rw-r--r-- | doc/src/sgml/ref/alter_materialized_view.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/alter_materialized_view.sgml b/doc/src/sgml/ref/alter_materialized_view.sgml index cae135c27a0..479d642f6da 100644 --- a/doc/src/sgml/ref/alter_materialized_view.sgml +++ b/doc/src/sgml/ref/alter_materialized_view.sgml @@ -99,7 +99,7 @@ ALTER MATERIALIZED VIEW ALL IN TABLESPACE <replaceable class="parameter">name</r <term><replaceable class="parameter">column_name</replaceable></term> <listitem> <para> - Name of a new or existing column. + Name of an existing column. </para> </listitem> </varlistentry> |