1
by brian
clean slate |
1 |
drop table if exists t1,t2;
|
685.2.6
by Monty Taylor
Fixed check. |
2 |
create table t1(n int not null, key(n), key(n), key(n), key(n)) engine=myisam;
|
1
by brian
clean slate |
3 |
check table t1 extended;
|
4 |
insert into t1 values (200000);
|
|
5 |
Table Op Msg_type Msg_text
|
|
6 |
test.t1 check status OK
|
|
7 |
drop table t1;
|
|
685.2.6
by Monty Taylor
Fixed check. |
8 |
CREATE TEMPORARY TABLE t1(a INT) engine=myisam;
|
1
by brian
clean slate |
9 |
CHECK TABLE t1;
|
10 |
Table Op Msg_type Msg_text
|
|
11 |
test.t1 check status OK
|
|
12 |
REPAIR TABLE t1;
|
|
13 |
Table Op Msg_type Msg_text
|
|
14 |
test.t1 repair status OK
|
|
15 |
DROP TABLE t1;
|