mariadb/mysql-test/r/lowercase_utf8.result

10 lines
173 B
Text
Raw Normal View History

set names utf8;
2009-02-18 13:09:46 +01:00
create table `Ö` (id int);
show tables from test like 'Ö';
Tables_in_test (Ö)
ö
show tables from test like 'ö';
Tables_in_test (ö)
ö
drop table `Ö`;