mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
7acaece2ba
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 `А`;
|