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

Поиск
Список
Период
Сортировка
От Andres Freund
Тема Re: pgsql: Add support for collation attributes on older ICU versions
Дата
Msg-id 20190318190351.bkgkrgr6frnv3cxr@alap3.anarazel.de
обсуждение исходный текст
Ответ на pgsql: Add support for collation attributes on older ICU versions  (Peter Eisentraut <peter@eisentraut.org>)
Ответы Re: pgsql: Add support for collation attributes on older ICU versions  (Peter Eisentraut <peter.eisentraut@2ndquadrant.com>)
Список 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@manitou-mail.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
expressionof type 'UColAttribute' is always true [-Wtautological-constant-out-of-range-compare]
 
                        if (uattr != -1 && uvalue != -1)
                            ~~~~~ ^  ~~


Greetings,

Andres Freund


В списке pgsql-committers по дате отправления:

Предыдущее
От: Robert Haas
Дата:
Сообщение: pgsql: Fold vacuum's 'int options' parameter into VacuumParams.
Следующее
От: Robert Haas
Дата:
Сообщение: pgsql: Revise parse tree representation for VACUUM and ANALYZE.