mariadb/mysql-test/r/lowercase_mixed_tmpdir_innodb.result
2010-10-27 16:31:22 -07:00

6 lines
190 B
Text

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;