diff options
Diffstat (limited to 'mysql-test/r/lowercase_table3.result')
-rw-r--r-- | mysql-test/r/lowercase_table3.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/lowercase_table3.result b/mysql-test/r/lowercase_table3.result new file mode 100644 index 00000000000..362d17e0461 --- /dev/null +++ b/mysql-test/r/lowercase_table3.result @@ -0,0 +1,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; |