blob: 77aa98c3da96f37e086fae3b0f3b0573150a193d (
plain)
1
2
3
4
5
6
7
8
|
repair table t1;
Table Op Msg_type Msg_text
test.t1 repair error Can't open file: 't1.MYI'. (errno: 130)
repair table t1 use_frm;
Table Op Msg_type Msg_text
test.t1 repair warning Number of rows changed from 0 to 1
test.t1 repair status OK
drop table t1;
|