mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
b04c4801b0
Moved test from main suite to the new suites. Move tests from maria/t and maria/r to maria mysql-test/mysql-test-run.pl: Added support for the new suites
13 lines
405 B
Text
13 lines
405 B
Text
--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_dbug='d,simulate_archive_open_failure';
|
|
CHECK TABLE t1;
|
|
SET SESSION debug_dbug=DEFAULT;
|
|
DROP TABLE t1;
|