1
drop table if exists t1,t2;
2
create table t1(n int not null, key(n), key(n), key(n), key(n));
3
check table t1 extended;
4
insert into t1 values (200000);
5
Table Op Msg_type Msg_text
6
test.t1 check status OK
8
Create table t1(f1 int);
9
Create table t2(f1 int);
11
Table Op Msg_type Msg_text
12
test.v1 check Error Table 'test.v1' doesn't exist
13
test.v1 check status OK
14
test.t2 check status OK
16
CREATE TEMPORARY TABLE t1(a INT);
18
Table Op Msg_type Msg_text
19
test.t1 check status OK
21
Table Op Msg_type Msg_text
22
test.t1 repair status OK