You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
395 B
13 lines
395 B
--source include/have_archive.inc
|
|
--source include/have_debug.inc
|
|
|
|
--echo #
|
|
--echo # BUG#12402794 - 60976: CRASH, VALGRIND WARNING AND MEMORY LEAK
|
|
--echo # WITH PARTITIONED ARCHIVE TABLES
|
|
--echo #
|
|
CREATE TABLE t1(a INT) ENGINE=ARCHIVE;
|
|
INSERT INTO t1 VALUES(1);
|
|
SET SESSION debug='d,simulate_archive_open_failure';
|
|
CHECK TABLE t1;
|
|
SET SESSION debug=DEFAULT;
|
|
DROP TABLE t1;
|
|
|