1
connect (con1,localhost,root,,);
2
connect (con2,localhost,root,,);
5
drop table if exists t1,t2;
8
# 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;
14
eval insert into t1 values ($1);
18
send check table t1 extended;
20
insert into t1 values (200000);
29
# BUG#26325 - TEMPORARY TABLE "corrupt" after first read, according to CHECK
32
CREATE TEMPORARY TABLE t1(a INT) engine=myisam;