From: | PG Bug reporting form <noreply(at)postgresql(dot)org> |
---|---|
To: | pgsql-bugs(at)lists(dot)postgresql(dot)org |
Cc: | developer(at)yamashi-ta(dot)jp |
Subject: | BUG #17058: Unable to create collation in version 13. |
Date: | 2021-06-13 08:56:24 |
Message-ID: | 17058-b49f5793c912c5aa@postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
The following bug has been logged on the website:
Bug reference: 17058
Logged by: Yasushi Yamashita
Email address: developer(at)yamashi-ta(dot)jp
PostgreSQL version: 13.3
Operating system: Windows 10
Description:
[PostgreSQL 13.3, compiled by Visual C++ build 1914, 64-bit]
postgres=# CREATE COLLATION public.ja_jp (LOCALE = 'Japanese_Japan.932');
ERROR: could not get collation version for locale "Japanese_Japan.932":
error code 87
[PostgreSQL 12.7, compiled by Visual C++ build 1914, 64-bit]
postgres=# CREATE COLLATION public.ja_jp (LOCALE = 'Japanese_Japan.932');
CREATE COLLATION
postgres=# SELECT * FROM pg_collation WHERE collname = 'ja_jp';
oid | collname | collnamespace | collowner | collprovider |
collisdeterministic | collencoding | collcollate | collctype
| collversion
-------+----------+---------------+-----------+--------------+---------------------+--------------+--------------------+--------------------+-------------
16394 | ja_jp | 2200 | 10 | c | t
| 6 | Japanese_Japan.932 | Japanese_Japan.932 |
(1 row)
From | Date | Subject | |
---|---|---|---|
Next Message | Thomas Munro | 2021-06-13 20:33:05 | Re: BUG #17058: Unable to create collation in version 13. |
Previous Message | Andrew Dunstan | 2021-06-13 01:59:24 | Re: BUG #17056: Segmentation fault on altering the type of the foreign table column with a default |