pgsql: Get rid of USE_WIDE_UPPER_LOWER dependency in trigram constructi - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Get rid of USE_WIDE_UPPER_LOWER dependency in trigram constructi
Date
Msg-id E1UOucN-0001vC-Py@gemulon.postgresql.org
Whole thread Raw
Responses Re: pgsql: Get rid of USE_WIDE_UPPER_LOWER dependency in trigram constructi  (Dimitri Fontaine <dimitri@2ndQuadrant.fr>)
List pgsql-committers
Get rid of USE_WIDE_UPPER_LOWER dependency in trigram construction.

contrib/pg_trgm's make_trigrams() was coded to ignore multibyte character
boundaries and just make trigrams from bytes if USE_WIDE_UPPER_LOWER wasn't
defined.  This is a bit odd, since there's no obvious reason why trigram
compaction rules should depend on the presence of towlower() and friends.
What's more, there was an Assert() that would fail if that code path was
fed any multibyte characters.

We need to do something about this since the pending regex-indexing patch
has an assumption that you get just one "trgm" from any three characters.
The best solution seems to be to remove the USE_WIDE_UPPER_LOWER
dependency, which shouldn't really have been there in the first place.
The second loop in make_trigrams() is now just a fast path and not a
potentially incompatible algorithm.

If there is anybody still using Postgres on machines without wcstombs() or
towlower(), and they have non-ASCII data indexed by pg_trgm, they'll need
to REINDEX those indexes after pg_upgrade to 9.3, else searches may fail
incorrectly. It seems likely that there are no such installations, though.

In passing, rename cnt_trigram to compact_trigram, which seems to better
describe its functionality, and improve make_trigrams' test for whether it
has to use the slow path or not (per a suggestion from Alexander Korotkov).

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/7844608e54a3a2e3dee461b00fd6ef028a845d7c

Modified Files
--------------
contrib/pg_trgm/trgm_op.c |   17 ++++++++++-------
1 files changed, 10 insertions(+), 7 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: In isolationtester, retry after EINTR return from select(2).
Next
From: Simon Riggs
Date:
Subject: pgsql: Fix checksums for CLUSTER, VACUUM FULL etc.