diff options
author | Alexander Korotkov <akorotkov@postgresql.org> | 2021-05-04 03:56:16 +0300 |
---|---|---|
committer | Alexander Korotkov <akorotkov@postgresql.org> | 2021-05-04 03:59:21 +0300 |
commit | ae9492a61bbf575e2862cf9323c7f02806382093 (patch) | |
tree | b0a5e5811ef47d31ab837c95c6b3624cfce70eb7 /doc/src | |
parent | f7a97b6ec31f3f57a6154d0039c4de81ad517064 (diff) | |
download | postgresql-ae9492a61bbf575e2862cf9323c7f02806382093.tar.gz postgresql-ae9492a61bbf575e2862cf9323c7f02806382093.zip |
Remove mention of the version number from pg_trgm docs
We don't usually mention the version number in similar situations. So, neither
mention it here.
Reported-by: Bruce Momjian
Discussion: https://postgr.es/m/20210503234914.GO6180%40momjian.us
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/pgtrgm.sgml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/src/sgml/pgtrgm.sgml b/doc/src/sgml/pgtrgm.sgml index ca97c7ce00a..7e292822553 100644 --- a/doc/src/sgml/pgtrgm.sgml +++ b/doc/src/sgml/pgtrgm.sgml @@ -415,9 +415,8 @@ the purpose of very fast similarity searches. These index types support the above-described similarity operators, and additionally support trigram-based index searches for <literal>LIKE</literal>, <literal>ILIKE</literal>, - <literal>~</literal> and <literal>~*</literal> queries. Beginning in - <productname>PostgreSQL</productname> 14, these indexes also support - the equality operator (inequality operators are not supported). + <literal>~</literal>, <literal>~*</literal> and <literal>=</literal> queries. + Inequality operators are not supported. Note that those indexes may not be as efficient as regular B-tree indexes for equality operator. </para> |