repo.or.cz
/
tomato.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mySQL 5.0.11 sources for tomato
[tomato.git]
/
release
/
src
/
router
/
mysql
/
mysql-test
/
t
/
lowercase_utf8.test
blob
01b154598fd06c39204ed719150707bf1c6de910
1
#
2
# Bug#25830 SHOW TABLE STATUS behaves differently depending on table name
3
#
4
set names utf8;
5
create table `Ö` (id int);
6
show tables from test like 'Ö';
7
show tables from test like 'ö';
8
drop table `Ö`;
9