blob: 9cce55d61993ccd04e0db67beac6c9e161e32abd (
plain)
1
2
3
4
5
6
7
8
|
drop table if exists t1;
check table t1;
Table Op Msg_type Msg_text
test.t1 check status OK
OPTIMIZE TABLE t1;
Table Op Msg_type Msg_text
test.t1 optimize status OK
drop table t1;
|