pgsql: doc: Clarify that COLUMN is optional in ALTER TABLE ... ADD/DROP - Mailing list pgsql-committers

From Fujii Masao
Subject pgsql: doc: Clarify that COLUMN is optional in ALTER TABLE ... ADD/DROP
Date
Msg-id E1vxzrz-002SLW-2Y@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
doc: Clarify that COLUMN is optional in ALTER TABLE ... ADD/DROP COLUMN.

In ALTER TABLE ... ADD/DROP COLUMN, the COLUMN keyword is optional. However,
part of the documentation could be read as if COLUMN were required, which may
mislead users about the command syntax.

This commit updates the ALTER TABLE documentation to clearly state that
COLUMN is optional for ADD and DROP.

Also this commit adds regression tests covering ALTER TABLE ... ADD/DROP
without the COLUMN keyword.

Backpatch to all supported versions.

Author: Chao Li <lic@highgo.com>
Reviewed-by: Robert Treat <rob@xzilla.net>
Reviewed-by: Fujii Masao <masao.fujii@gmail.com>
Discussion: https://postgr.es/m/CAEoWx2n6ShLMOnjOtf63TjjgGbgiTVT5OMsSOFmbjGb6Xue1Bw@mail.gmail.com
Backpatch-through: 14

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9b0e5bd5320f95cfb35f0402c0f4bb7a1d3ecb0f

Modified Files
--------------
doc/src/sgml/ref/alter_table.sgml         |  4 ++--
src/test/regress/expected/alter_table.out | 10 ++++++++++
src/test/regress/sql/alter_table.sql      |  8 ++++++++
3 files changed, 20 insertions(+), 2 deletions(-)


pgsql-committers by date:

Previous
From: Michael Paquier
Date:
Subject: pgsql: Move definition of XLogRecoveryCtlData to xlogrecovery.h
Next
From: Fujii Masao
Date:
Subject: pgsql: doc: Clarify that COLUMN is optional in ALTER TABLE ... ADD/DROP