mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / t / lowercase_mixed_tmpdir_innodb.test
blobe3b9b7b2a32e81355cf278f057a810b0fecdeb95
1 --source include/have_lowercase2.inc
2 --source include/have_innodb.inc
4 --disable_warnings
5 drop table if exists t1;
6 --enable_warnings
8 create table t1 (id int) engine=InnoDB;
9 insert into t1 values (1);
10 create temporary table t2 engine=InnoDB select * from t1;
11 drop temporary table t2;
12 drop table t1;