pgsql: Remove obsolete RECHECK keyword completely

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove obsolete RECHECK keyword completely
Date: 2024-08-09 05:24:24
Message-ID: E1scI6y-003N8t-Lm@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove obsolete RECHECK keyword completely

This used to be part of CREATE OPERATOR CLASS and ALTER OPERATOR
FAMILY, but it has done nothing (except issue a NOTICE) since
PostgreSQL 8.4. Commit 30e7c175b81 removed support for dumping from
pre-9.2 servers, so this no longer serves any need.

This now removes it completely, and you'd get a normal parse error if
you used it.

Reviewed-by: Aleksander Alekseev <aleksander(at)timescale(dot)com>
Discussion: https://www.postgresql.org/message-id/flat/113ef2d2-3657-4353-be97-f28fceddbca1%40eisentraut.org

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/7da1bdc2c2f17038f2ae1900be90a0d7b5e361e0

Modified Files
--------------
doc/src/sgml/ref/alter_opfamily.sgml | 8 -------
doc/src/sgml/ref/create_opclass.sgml | 8 -------
src/backend/parser/gram.y | 26 +++--------------------
src/include/parser/kwlist.h | 1 -
src/test/isolation/specs/merge-match-recheck.spec | 2 +-
5 files changed, 4 insertions(+), 41 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2024-08-09 13:08:58 Re: pgsql: Fix more holes with SLRU code in need of int64 for segment numbe
Previous Message Amit Kapila 2024-08-09 05:05:03 pgsql: Change the misleading local end_lsn for prepared transactions.