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

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