summaryrefslogtreecommitdiff
path: root/mysql-test/main/lowercase_mixed_tmpdir_innodb.result
blob: a478b49cfdaaa51937664ff9fa2c586c253b41b3 (plain)
1
2
3
4
5
6
drop table if exists t1;
create table t1 (id int) engine=InnoDB;
insert into t1 values (1);
create temporary table t2 engine=InnoDB select * from t1;
drop temporary table t2;
drop table t1;