Re: pgsql: Add support for collation attributes on older ICU versions

From: Andres Freund <andres(at)anarazel(dot)de>
To: Peter Eisentraut <peter(at)eisentraut(dot)org>
Cc: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: Re: pgsql: Add support for collation attributes on older ICU versions
Date: 2019-03-18 19:03:51
Message-ID: 20190318190351.bkgkrgr6frnv3cxr@alap3.anarazel.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Hi,

On 2019-03-17 07:47:45 +0000, Peter Eisentraut wrote:
> Add support for collation attributes on older ICU versions
>
> Starting in ICU 54, collation customization attributes can be
> specified in the locale string, for example
> "@colStrength=primary;colCaseLevel=yes". Add support for this for
> older ICU versions as well, by adding some minimal parsing of the
> attributes in the locale string and calling ucol_setAttribute() on
> them. This is essentially what never ICU versions do internally in
> ucol_open(). This was we can offer this functionality in a consistent
> way in all ICU versions supported by PostgreSQL.
>
> Also add some tests for ICU collation customization.
>
> Reported-by: Daniel Verite <daniel(at)manitou-mail(dot)org>
> Discussion: https://www.postgresql.org/message-id/0270ebd4-f67c-8774-1a5a-91adfb9bb41f@2ndquadrant.com

I now get this warning:

/home/andres/src/postgresql/src/backend/utils/adt/pg_locale.c:1680:14: warning: comparison of constant -1 with expression of type 'UColAttribute' is always true [-Wtautological-constant-out-of-range-compare]
if (uattr != -1 && uvalue != -1)
~~~~~ ^ ~~

Greetings,

Andres Freund

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2019-03-18 19:19:48 pgsql: Revise parse tree representation for VACUUM and ANALYZE.
Previous Message Robert Haas 2019-03-18 18:05:00 pgsql: Fold vacuum's 'int options' parameter into VacuumParams.