RE: collate not support Unicode Variation Selector - Mailing list pgsql-hackers

From 荒井元成
Subject RE: collate not support Unicode Variation Selector
Date
Msg-id 001e01d8a6cd$50a44900$f1ecdb00$@ndensan.co.jp
Whole thread Raw
In response to collate not support Unicode Variation Selector  (荒井元成 <n2029@ndensan.co.jp>)
Responses Re: collate not support Unicode Variation Selector
List pgsql-hackers
Hi, I hope supported Unicode Variation Selector on collate.

I will resend it because there was a typo.

D209007=# create table ivstest ( moji text  collate "ja-x-icu" CONSTRAINT firstkey PRIMARY KEY );
D209007=# insert into ivstest (moji) values ( U&'\+003436' || U&'\+0E0101' || U&'\+00304D');
D209007=# insert into ivstest (moji) values ( U&'\+003436' || U&'\+00304D');
D209007=# select moji from ivstest where moji like '%' || U&'\+003436' || '%';
-------------
㐶󠄁き
㐶き
(2 行)

expected
-------------
㐶き
(1 行)


Best regards,







pgsql-hackers by date:

Previous
From: 荒井元成
Date:
Subject: collate not support Unicode Variation Selector
Next
From: Tom Lane
Date:
Subject: Re: Parallel Aggregates for string_agg and array_agg