mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
65c3d37111
replace wild_case_compare with my_wildcmp which is multibyte safe function mysql-test/r/lowercase_utf8.result: test result mysql-test/t/lowercase_utf8-master.opt: test case mysql-test/t/lowercase_utf8.test: test case sql/sql_show.cc: replace wild_case_compare with my_wildcmp which is multibyte safe function
9 lines
173 B
Text
9 lines
173 B
Text
set names utf8;
|
|
create table `Ö` (id int);
|
|
show tables from test like 'Ö';
|
|
Tables_in_test (Ö)
|
|
ö
|
|
show tables from test like 'ö';
|
|
Tables_in_test (ö)
|
|
ö
|
|
drop table `Ö`;
|