Re: BUG #16570: Collation not working

Поиск
Список
Период
Сортировка
От Daniel Verite
Тема Re: BUG #16570: Collation not working
Дата
Msg-id 23d3f3ec-5022-4535-8bd4-bb2c56456767@manitou-mail.org
обсуждение исходный текст
Ответ на BUG #16570: Collation not working  (PG Bug reporting form <noreply@postgresql.org>)
Ответы Re: BUG #16570: Collation not working  (Arnaud Perrier <arnaud.perrier@gmail.com>)
Re: BUG #16570: Collation not working  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
    PG Bug reporting form wrote:

> The collation to order digits after latin characters from the official
> documentation https://www.postgresql.org/docs/12/collation.html
>
> CREATE COLLATION digitslast (provider = icu, locale =
> 'en-u-kr-latn-digit');

The doc has this caveat:
"The examples using the k* subtags require at least ICU version 54."

Since you're using ICU 53,  the syntax mentioned above for the locale
argument doesn't work. It doesn't error out, it's just being ignored.

You want to use exclusively the "old" syntax with option=value
instead of tags, for instance:
   locale = 'en@colReorder=latn-digit',
or build with a newer ICU version.

Unfortunately the EDB builds for Windows (maybe for linux
too I didn't check) ship with ICU 53, although this version
is 6 years old.


Best regards,
--
Daniel Vérité
PostgreSQL-powered mailer: https://www.manitou-mail.org
Twitter: @DanielVerite



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #16571: "time with time zone" type can input '00:00:00+1559'::time with time zone
Следующее
От: Arnaud Perrier
Дата:
Сообщение: Re: BUG #16570: Collation not working