mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
544fa7593b
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
206 B
Text
9 lines
206 B
Text
#
|
||
# Bug#25830 SHOW TABLE STATUS behaves differently depending on table name
|
||
#
|
||
set names utf8;
|
||
create table `А` (id int);
|
||
show tables from test like 'А';
|
||
show tables from test like 'а';
|
||
drop table `А`;
|
||
|