mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
Bug#25830 SHOW TABLE STATUS behaves differently depending on table name(for 5.0 only)
replace wild_case_compare with my_wildcmp which is multibyte safe function
This commit is contained in:
9
mysql-test/t/lowercase_utf8.test
Normal file
9
mysql-test/t/lowercase_utf8.test
Normal file
@@ -0,0 +1,9 @@
|
||||
#
|
||||
# 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 `А`;
|
||||
|
||||
Reference in New Issue
Block a user