diff options
author | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2009-02-18 16:09:46 +0400 |
---|---|---|
committer | Sergey Glukhov <Sergey.Glukhov@sun.com> | 2009-02-18 16:09:46 +0400 |
commit | ad0e657db4a1599dc461394a8504ce8e5bfda329 (patch) | |
tree | bda55404b9d0004caa6285c2fe0843ef9700e8d2 /mysql-test/t/lowercase_utf8.test | |
parent | 4c45c68e08462a1a773caca69fc8b9c4d2da5df6 (diff) | |
parent | 49243dd212989e2c4ae8a7a751238bda606efb65 (diff) | |
download | mariadb-git-ad0e657db4a1599dc461394a8504ce8e5bfda329.tar.gz |
5.0->bugteam->5.1-bugteam merge
Diffstat (limited to 'mysql-test/t/lowercase_utf8.test')
-rw-r--r-- | mysql-test/t/lowercase_utf8.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/lowercase_utf8.test b/mysql-test/t/lowercase_utf8.test new file mode 100644 index 00000000000..01b154598fd --- /dev/null +++ b/mysql-test/t/lowercase_utf8.test @@ -0,0 +1,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 `Ö`; + |