mariadb/mysql-test/r/lowercase_table3.result
unknown 404730a123 after merge fix
mysql-test/r/lowercase_table2.result:
  results updated
2004-06-27 13:16:19 +02:00

10 lines
228 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;