mysql5/mysql-5.7.27/mysql-test/t/lowercase_utf8.test

11 lines
207 B
Plaintext

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