summaryrefslogtreecommitdiff
path: root/mysql-test/main/lowercase_utf8.test
blob: 01b154598fd06c39204ed719150707bf1c6de910 (plain)
1
2
3
4
5
6
7
8
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 `Ö`;