blob: bdc5a57a07c00ff3f18b197e28391351c5d5b16f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#
# Test of repair table
#
--disable_warnings
drop table if exists t1;
--enable_warnings
create table t1 SELECT 1,"table 1";
repair table t1 use_frm;
drop table if exists t1;
|