summaryrefslogtreecommitdiff
path: root/mysql-test/main/lowercase_mixed_tmpdir.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/lowercase_mixed_tmpdir.result')
-rw-r--r--mysql-test/main/lowercase_mixed_tmpdir.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/main/lowercase_mixed_tmpdir.result b/mysql-test/main/lowercase_mixed_tmpdir.result
new file mode 100644
index 00000000000..e11b5e4c286
--- /dev/null
+++ b/mysql-test/main/lowercase_mixed_tmpdir.result
@@ -0,0 +1,6 @@
+drop table if exists t1;
+create table t1 (id int) engine=myisam;
+insert into t1 values (1);
+create temporary table t2 select * from t1;
+drop temporary table t2;
+drop table t1;