From a7abddeffa6a760ce948c2dfb007cdf3f1a369d5 Mon Sep 17 00:00:00 2001 From: Michael Widenius Date: Fri, 9 Mar 2018 14:05:35 +0200 Subject: Create 'main' test directory and move 't' and 'r' there --- mysql-test/main/lowercase_mixed_tmpdir.result | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 mysql-test/main/lowercase_mixed_tmpdir.result (limited to 'mysql-test/main/lowercase_mixed_tmpdir.result') 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; -- cgit v1.2.1