2008-08-19 11:44:22 +02:00
|
|
|
# test the auto-recover (--myisam-recover) of partitioned myisam tables
|
2009-08-29 23:29:47 +02:00
|
|
|
|
|
|
|
call mtr.add_suppression("./test/t1_will_crash");
|
2009-12-13 23:50:33 +00:00
|
|
|
call mtr.add_suppression("Got an error from unknown thread");
|
2009-08-29 23:29:47 +02:00
|
|
|
|
2008-08-19 11:44:22 +02:00
|
|
|
--source include/have_partition.inc
|
|
|
|
--disable_warnings
|
|
|
|
--disable_query_log
|
|
|
|
drop table if exists t1_will_crash;
|
|
|
|
--enable_query_log
|
|
|
|
--enable_warnings
|
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE t1_will_crash (a INT, KEY (a)) ENGINE=MyISAM;
|
|
|
|
INSERT INTO t1_will_crash VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10), (11);
|
|
|
|
FLUSH TABLES;
|
2009-02-01 14:00:48 +02:00
|
|
|
|
2008-08-19 11:44:22 +02:00
|
|
|
--echo # replacing t1.MYI with a corrupt + unclosed one created by doing:
|
|
|
|
--echo # 'create table t1 (a int key(a))' head -c1024 t1.MYI > corrupt_t1.MYI
|
2009-02-01 14:00:48 +02:00
|
|
|
let $MYSQLD_DATADIR= `select @@datadir`;
|
2009-01-31 17:47:35 +02:00
|
|
|
--remove_file $MYSQLD_DATADIR/test/t1_will_crash.MYI
|
|
|
|
--copy_file std_data/corrupt_t1.MYI $MYSQLD_DATADIR/test/t1_will_crash.MYI
|
2008-08-19 11:44:22 +02:00
|
|
|
SELECT * FROM t1_will_crash;
|
|
|
|
DROP TABLE t1_will_crash;
|
|
|
|
CREATE TABLE t1_will_crash (a INT, KEY (a))
|
|
|
|
ENGINE=MyISAM
|
|
|
|
PARTITION BY HASH(a)
|
|
|
|
PARTITIONS 3;
|
|
|
|
INSERT INTO t1_will_crash VALUES (1), (2), (3), (4), (5), (6), (7), (8), (9), (10), (11);
|
|
|
|
FLUSH TABLES;
|
|
|
|
--echo # replacing t1#P#p1.MYI with a corrupt + unclosed one created by doing:
|
|
|
|
--echo # 'create table t1 (a int key(a)) partition by hash (a) partitions 3'
|
|
|
|
--echo # head -c1024 t1#P#p1.MYI > corrupt_t1#P#p1.MYI
|
2009-01-31 17:47:35 +02:00
|
|
|
--remove_file $MYSQLD_DATADIR/test/t1_will_crash#P#p1.MYI
|
|
|
|
--copy_file std_data/corrupt_t1#P#p1.MYI $MYSQLD_DATADIR/test/t1_will_crash#P#p1.MYI
|
2008-08-19 11:44:22 +02:00
|
|
|
SELECT * FROM t1_will_crash;
|
|
|
|
DROP TABLE t1_will_crash;
|