mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
9af502edd2
test for REPAIR ... USE_FRM added sql/sql_table.cc: protected close_cached_table() call in REPAIR ... USE_FRM with a mutex
8 lines
139 B
Text
8 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;
|