mariadb/mysql-test/r/lowercase_table3.result
2004-06-28 11:06:22 +02:00

10 lines
227 B
Text

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.InnoDB' (errno: 1)
drop table t1;