Server IP : 49.212.180.16 / Your IP : 3.134.104.224 Web Server : Apache System : FreeBSD www2606.sakura.ne.jp 13.0-RELEASE-p14 FreeBSD 13.0-RELEASE-p14 #2: Mon Dec 9 13:54:55 JST 2024 root@www5301.sakura.ne.jp:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64 User : utannto ( 1076) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/rs/mysql/5.1/mysql-test/include/ |
Upload File : |
# # Bug #27877 incorrect german order in utf8_general_ci # # Testing if "SHARP S" is equal to "S", # like in latin1_german1_ci, utf8_general_ci, ucs2_general_ci # Or if "SHART S" is equal to "SS", # like in latin1_german2_ci, utf8_unicode_ci, ucs2_unicode_ci # # Also testing A-uml, O-uml, U-uml # --disable_warnings drop table if exists t1; --enable_warnings # # Create a table with a varchar(x) column, # using current values of # @@character_set_connection and @@collation_connection. # create table t1 as select repeat(' ', 64) as s1; select collation(s1) from t1; delete from t1; # # Populate data # insert into t1 values ('a'),('ae'),(_latin1 0xE4); insert into t1 values ('o'),('oe'),(_latin1 0xF6); insert into t1 values ('s'),('ss'),(_latin1 0xDF); insert into t1 values ('u'),('ue'),(_latin1 0xFC); # # Check order # select s1, hex(s1) from t1 order by s1, binary s1; select group_concat(s1 order by binary s1) from t1 group by s1; drop table t1;