mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
fcf96dbb18
Deprecate the use of TYPE=... Preferred syntax is ENGINE=
22 lines
395 B
Text
22 lines
395 B
Text
#
|
|
# 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;
|
|
alter table t1 ENGINE=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 engine=myisam SELECT 1,"table 1";
|