1
connect (con1,localhost,root,,);
2
connect (con2,localhost,root,,);
5
2
drop table if exists t1,t2;
8
5
# Add a lot of keys to slow down check
9
create table t1(n int not null, key(n), key(n), key(n), key(n)) engine=myisam;
6
create temporary table t1(n int not null, key(n), key(n), key(n), key(n)) engine=myisam;