summaryrefslogtreecommitdiff
path: root/mysql-test/r/lowercase_table3.result
diff options
context:
space:
mode:
authormonty@mysql.com <>2004-03-18 00:16:04 +0200
committermonty@mysql.com <>2004-03-18 00:16:04 +0200
commit53c810cda446a060d4b9f41040f9227313c24ba1 (patch)
tree2bd46f92f467b68e9b652a280b512a9cf0413ca2 /mysql-test/r/lowercase_table3.result
parent43706715daf1039a772c2d2aaceae0ef93ffe037 (diff)
parentf34a642d6e492fa527e09593aa695e67d3867263 (diff)
downloadmariadb-git-53c810cda446a060d4b9f41040f9227313c24ba1.tar.gz
merge fixes (use old code)
Diffstat (limited to 'mysql-test/r/lowercase_table3.result')
-rw-r--r--mysql-test/r/lowercase_table3.result10
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;