blob: 98ded32686e077be9ebc20c0e100e7fcc9d60a25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
create table t1 (a int) engine=myisam data directory='MYSQL_TMP_DIR';
insert t1 values (1);
repair table t1;
Table Op Msg_type Msg_text
test.t1 repair status OK
drop table t1;
create table t2 (a int) engine=aria data directory='MYSQL_TMP_DIR';
insert t2 values (1);
repair table t2;
Table Op Msg_type Msg_text
test.t2 repair status OK
drop table t2;
foobar5543
|