pgsql: Support parenthesized syntax for CLUSTER without a table name.

From: Nathan Bossart <nathan(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Support parenthesized syntax for CLUSTER without a table name.
Date: 2023-07-19 22:29:03
Message-ID: E1qMFfK-000LYo-QT@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Support parenthesized syntax for CLUSTER without a table name.

b5913f6120 added a parenthesized syntax for CLUSTER, but it
requires specifying a table name. This is unlike commands such as
VACUUM and ANALYZE, which do not require specifying a table in the
parenthesized syntax. This change resolves this inconsistency.
This is preparatory work for a follow-up commit that will move the
unparenthesized syntax to the "Compatibility" section of the
CLUSTER documentation.

Reviewed-by: Melanie Plageman, Michael Paquier
Discussion: https://postgr.es/m/CAAKRu_bc5uHieG1976kGqJKxyWtyQt9yvktjsVX%2Bi7NOigDjOA%40mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/cdaedfc96d1488069518d42479125ceb9a5e67d0

Modified Files
--------------
doc/src/sgml/ref/cluster.sgml | 2 +-
src/backend/parser/gram.y | 12 +++++++++++-
2 files changed, 12 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2023-07-20 01:24:21 pgsql: Fix pg_recvlogical upon signal termination
Previous Message Tom Lane 2023-07-19 16:46:39 pgsql: Add psql \drg command to display role grants.