1
by brian
clean slate |
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
|
|
7 |
drop table t1;
|
|
8 |
Create table t1(f1 int);
|
|
9 |
Create table t2(f1 int);
|
|
10 |
Check Table v1,t2;
|
|
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
|
|
15 |
drop table t1, t2;
|
|
16 |
CREATE TEMPORARY TABLE t1(a INT);
|
|
17 |
CHECK TABLE t1;
|
|
18 |
Table Op Msg_type Msg_text
|
|
19 |
test.t1 check status OK
|
|
20 |
REPAIR TABLE t1;
|
|
21 |
Table Op Msg_type Msg_text
|
|
22 |
test.t1 repair status OK
|
|
23 |
DROP TABLE t1;
|