pgsql: Improve support for UNICODE collation on older ICU

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Improve support for UNICODE collation on older ICU
Date: 2023-03-13 08:09:55
Message-ID: E1pbdFj-003IUU-F2@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Improve support for UNICODE collation on older ICU

The recently added standard collation UNICODE (0d21d4b9bc) doesn't
give consistent results on some build farm members with old ICU
versions. Apparently, the ICU locale specification 'und' (language
tag style) misbehaves on some older ICU versions. Replacing it with
'' (ICU locale ID style) fixes it at least on some OS versions. Let's
see what the build farm says.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/d72900bdedc60fe20bc50d5d0e7dcb4bc0eb304e

Modified Files
--------------
src/bin/initdb/initdb.c | 2 +-
src/include/catalog/catversion.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2023-03-13 10:01:34 pgsql: Remove incidental md5() function uses from main regression tests
Previous Message Michael Paquier 2023-03-13 07:37:06 pgsql: Fix inconsistent error handling for GSS encryption in PQconnectP