1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

5.0->bugteam->5.1-bugteam merge

This commit is contained in:
Sergey Glukhov
2009-02-18 16:09:46 +04:00
4 changed files with 36 additions and 4 deletions

View File

@ -0,0 +1,9 @@
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 `Ö`;

View File

@ -0,0 +1,4 @@
--lower-case-table-names=1 --character-set-server=utf8

View File

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