95 lines
3.3 KiB
Plaintext
95 lines
3.3 KiB
Plaintext
show variables like 'character_sets_dir%';
|
||
Variable_name Value
|
||
character_sets_dir MYSQL_TEST_DIR/std_data/
|
||
set names utf8;
|
||
select * from information_schema.collations where id>256 order by id;
|
||
COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN
|
||
utf8mb4_test_ci utf8mb4 326 8
|
||
utf16_test_ci utf16 327 8
|
||
utf8mb4_test_400_ci utf8mb4 328 8
|
||
utf8_bengali_standard_ci utf8 336 8
|
||
utf8_bengali_traditional_ci utf8 337 8
|
||
utf8_phone_ci utf8 352 8
|
||
utf8_test_ci utf8 353 8
|
||
utf8_5624_1 utf8 354 8
|
||
utf8_5624_2 utf8 355 8
|
||
utf8_5624_3 utf8 356 8
|
||
utf8_5624_4 utf8 357 8
|
||
ucs2_test_ci ucs2 358 8
|
||
ucs2_vn_ci ucs2 359 8
|
||
ucs2_5624_1 ucs2 360 8
|
||
utf8_5624_5 utf8 368 8
|
||
utf32_test_ci utf32 391 8
|
||
utf8_maxuserid_ci utf8 2047 8
|
||
show collation like '%test%';
|
||
Collation Charset Id Default Compiled Sortlen
|
||
latin1_test latin1 99 Yes 1
|
||
utf8_test_ci utf8 353 8
|
||
ucs2_test_ci ucs2 358 8
|
||
utf8mb4_test_ci utf8mb4 326 8
|
||
utf8mb4_test_400_ci utf8mb4 328 8
|
||
utf16_test_ci utf16 327 8
|
||
utf32_test_ci utf32 391 8
|
||
show collation like 'ucs2_vn_ci';
|
||
Collation Charset Id Default Compiled Sortlen
|
||
ucs2_vn_ci ucs2 359 8
|
||
create table 2byte_collation (c1 char(1) character set ucs2 collate ucs2_vn_ci)
|
||
engine = InnoDB;
|
||
insert into 2byte_collation values (0x0061);
|
||
set @@character_set_results=NULL;
|
||
select * from 2byte_collation;
|
||
Catalog Database Table Table_alias Column Column_alias Type Length Max length Is_null Flags Decimals Charsetnr
|
||
def test 2byte_collation 2byte_collation c1 c1 254 2 2 Y 0 0 359
|
||
c1
|
||
|