mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
3e72b423e3
Fix for USE_FRM and crashed index file
19 lines
353 B
Text
19 lines
353 B
Text
#
|
|
# Test of repair table
|
|
#
|
|
|
|
drop table if exists t1;
|
|
create table t1 SELECT 1,"table 1";
|
|
repair table t1 use_frm;
|
|
alter table t1 TYPE=HEAP;
|
|
repair table t1 use_frm;
|
|
drop table t1;
|
|
|
|
# non-existent table
|
|
repair table t1 use_frm;
|
|
|
|
#
|
|
# Create test table for repair2
|
|
# The following must be last in this file
|
|
|
|
create table t1 type=myisam SELECT 1,"table 1";
|