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));
14
eval insert into t1 values ($1);
18
send check table t1 extended;
20
insert into t1 values (200000);
28
# Bug #9897 Views: 'Check Table' crashes MySQL, with a view and a table
33
Create table t1(f1 int);
34
Create table t2(f1 int);
39
# BUG#26325 - TEMPORARY TABLE "corrupt" after first read, according to CHECK
42
CREATE TEMPORARY TABLE t1(a INT);