mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
dd377bfba6
Use 0x.... as strings if 'new' mode. (bug 152) Don't report -max on windows when InnoDB is enabled. (bug 332) Reset current_linfo; This could cause a hang when doing PURGE LOGS. Fix for row numbers in EXPLAIN (bug 322) Fix that USE_FRM works for all table types (bug 97)
10 lines
180 B
Text
10 lines
180 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;
|