mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
9 lines
139 B
Text
9 lines
139 B
Text
|
#
|
||
|
# Test of repair table
|
||
|
#
|
||
|
|
||
|
drop table if exists t1;
|
||
|
create table t1 SELECT 1,"table 1";
|
||
|
repair table t1 use_frm;
|
||
|
drop table if exists t1;
|