8 lines
707 B
Plaintext
8 lines
707 B
Plaintext
--source suite/xengine_collations/include/unicode.inc
|
|
insert into unicode values (0x100001,'AA','Danish AA','Lu');
|
|
insert into unicode values (0x100002,'Aa','Danish Aa','Lt');
|
|
insert into unicode values (0x100003,'aa','Danish aa','Ll');
|
|
select hex(convert(uc using utf32)), hex(weight_string(convert(uc using utf8mb4) collate utf8mb4_da_0900_ai_ci)), name from unicode where category in ('Lu','Ll','Lt','Lm') order by uc collate utf8mb4_da_0900_ai_ci, cp;
|
|
select hex(convert(uc using utf32)), hex(weight_string(convert(uc using utf8mb4) collate utf8mb4_da_0900_as_cs)), name from unicode where category in ('Lu','Ll','Lt','Lm') order by uc collate utf8mb4_da_0900_as_cs, cp;
|
|
drop table if exists unicode;
|