summaryrefslogtreecommitdiff
path: root/mysql-test/r/lowercase_table3.result
blob: 8182d07c26be3f7c4fd47d941cf00bf5e3a5df23 (plain)
1
2
3
4
5
6
7
8
9
10
DROP TABLE IF EXISTS t1,T1;
CREATE TABLE t1 (a int);
SELECT * from T1;
a
drop table t1;
flush tables;
CREATE TABLE t1 (a int) ENGINE=INNODB;
SELECT * from T1;
ERROR HY000: Can't open file: 'T1.ibd' (errno: 1)
drop table t1;