mariadb/mysql-test/main/lowercase_utf8.test
2018-03-29 13:59:44 +03:00

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 `Ö`;