summaryrefslogtreecommitdiff
path: root/mysql-test/r/lowercase_table3.result
blob: 362d17e0461fb1ad24c5aa22273e9b57e286e914 (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) type=INNODB;
SELECT * from T1;
Can't open file: 'T1.InnoDB'. (errno: 1)
drop table t1;