diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-08-09 07:17:15 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-08-09 07:18:51 +0200 |
commit | 7da1bdc2c2f17038f2ae1900be90a0d7b5e361e0 (patch) | |
tree | 2fb2163ad7bf9a891ce03a2cebc069f567af5d2d /doc/src | |
parent | 701cf1e3174d560a19c019f1085c73ef667acf2d (diff) | |
download | postgresql-7da1bdc2c2f17038f2ae1900be90a0d7b5e361e0.tar.gz postgresql-7da1bdc2c2f17038f2ae1900be90a0d7b5e361e0.zip |
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@timescale.com>
Discussion: https://www.postgresql.org/message-id/flat/113ef2d2-3657-4353-be97-f28fceddbca1%40eisentraut.org
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/alter_opfamily.sgml | 8 | ||||
-rw-r--r-- | doc/src/sgml/ref/create_opclass.sgml | 8 |
2 files changed, 0 insertions, 16 deletions
diff --git a/doc/src/sgml/ref/alter_opfamily.sgml b/doc/src/sgml/ref/alter_opfamily.sgml index b2e5b9b72ec..5c4c2e579f5 100644 --- a/doc/src/sgml/ref/alter_opfamily.sgml +++ b/doc/src/sgml/ref/alter_opfamily.sgml @@ -273,14 +273,6 @@ ALTER OPERATOR FAMILY <replaceable>name</replaceable> USING <replaceable class=" is likely to be inlined into the calling query, which will prevent the optimizer from recognizing that the query matches an index. </para> - - <para> - Before <productname>PostgreSQL</productname> 8.4, the <literal>OPERATOR</literal> - clause could include a <literal>RECHECK</literal> option. This is no longer - supported because whether an index operator is <quote>lossy</quote> is now - determined on-the-fly at run time. This allows efficient handling of - cases where an operator might or might not be lossy. - </para> </refsect1> <refsect1> diff --git a/doc/src/sgml/ref/create_opclass.sgml b/doc/src/sgml/ref/create_opclass.sgml index f1d6a4cbbe2..2d560b68658 100644 --- a/doc/src/sgml/ref/create_opclass.sgml +++ b/doc/src/sgml/ref/create_opclass.sgml @@ -269,14 +269,6 @@ CREATE OPERATOR CLASS <replaceable class="parameter">name</replaceable> [ DEFAUL is likely to be inlined into the calling query, which will prevent the optimizer from recognizing that the query matches an index. </para> - - <para> - Before <productname>PostgreSQL</productname> 8.4, the <literal>OPERATOR</literal> - clause could include a <literal>RECHECK</literal> option. This is no longer - supported because whether an index operator is <quote>lossy</quote> is now - determined on-the-fly at run time. This allows efficient handling of - cases where an operator might or might not be lossy. - </para> </refsect1> <refsect1> |