DP_S/build/lib/mysql/mysql-test/t/lowercase_utf8.test

10 lines
206 B
Plaintext
Raw Normal View History

2024-04-24 10:25:44 +08:00
#
# 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 `Ö`;