blob: c9cf6c019f7d1313ebd52b62768a3157b0200ce2 (
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;
|