diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2019-09-23 10:58:19 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2019-09-23 10:58:19 -0400 |
commit | 8873c5b2017f87f8f7626782e67f5cd177cc4dff (patch) | |
tree | 27da2e0d63f0b650cae610c64ed823e2f395721b | |
parent | 7e7abed056df482b3250fb5844e8373c8a4180d6 (diff) |
Doc: in v11 release notes, remove item about citext_pattern_ops.
The entry for commit f24649976 claimed that citext_pattern_ops could be
used for LIKE index searches, but in fact it cannot. That patch only
created the opclass and some related operators, without doing anything
to teach the planner about how to use it. The opclass is basically
useless in this unfinished state, which is why nothing was added to the
main documentation about it, and really we shouldn't have said anything
in the release notes either. So remove the entry.
Discussion: https://postgr.es/m/CAKqncch4eBt2c8ddNVxzcVh3fFhdk54QoDMzpKgpqor4gA-wcQ@mail.gmail.com
-rw-r--r-- | doc/src/sgml/release-11.sgml | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/doc/src/sgml/release-11.sgml b/doc/src/sgml/release-11.sgml index 61e00ee5709..9b5f47f1c45 100644 --- a/doc/src/sgml/release-11.sgml +++ b/doc/src/sgml/release-11.sgml @@ -7690,24 +7690,6 @@ same commits as above <listitem> <!-- -2017-09-19 [f24649976] Add citext_pattern_ops for citext contrib module ---> - - <para> - Allow creation of indexes that can be used by <literal>LIKE</literal> - comparisons - on <link linkend="citext"><filename>citext</filename></link> columns - (Alexey Chernyshov) - </para> - - <para> - To do this, the index must be created using the - <literal>citext_pattern_ops</literal> operator class. - </para> - </listitem> - - <listitem> -<!-- 2018-04-05 [f4cd7102b] Add support of bool, bpchar, name and uuid to btree_gin --> |