pgsql: Fix planner's test for case-foldable characters in ILIKE withIC - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix planner's test for case-foldable characters in ILIKE withIC
Date
Msg-id E1hxDvZ-00048V-Vd@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix planner's test for case-foldable characters in ILIKE with ICU.

As coded, the ICU-collation path in pattern_char_isalpha() failed
to consider regular ASCII letters to be case-varying.  This led to
like_fixed_prefix treating too much of an ILIKE pattern as being a
fixed prefix, so that indexscans derived from an ILIKE clause might
miss entries that they should find.

Per bug #15892 from James Inform.  This is an oversight in the original
ICU patch (commit eccfef81e), so back-patch to v10 where that came in.

Discussion: https://postgr.es/m/15892-e5d2bea3e8a04a1b@postgresql.org

Branch
------
REL_10_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/886cf85b52cfdd84c0ff9b24193c7e0e0035b1c7

Modified Files
--------------
src/backend/utils/adt/selfuncs.c               | 10 ++++----
src/test/regress/expected/collate.icu.utf8.out | 32 ++++++++++++++++++++++++++
src/test/regress/sql/collate.icu.utf8.sql      |  9 ++++++++
3 files changed, 47 insertions(+), 4 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Remove EState.es_range_table_array.
Next
From: Peter Eisentraut
Date:
Subject: pgsql: Fix compiler warning