mirror of
https://github.com/MariaDB/server.git
synced 2025-09-03 20:43:11 +03:00
(and to follow the naming conventons). keep old debug variable, but mark it as deprecated.
13 lines
365 B
Plaintext
13 lines
365 B
Plaintext
#
|
|
# BUG#12402794 - 60976: CRASH, VALGRIND WARNING AND MEMORY LEAK
|
|
# WITH PARTITIONED ARCHIVE TABLES
|
|
#
|
|
CREATE TABLE t1(a INT) ENGINE=ARCHIVE;
|
|
INSERT INTO t1 VALUES(1);
|
|
SET SESSION debug_dbug='d,simulate_archive_open_failure';
|
|
CHECK TABLE t1;
|
|
Table Op Msg_type Msg_text
|
|
test.t1 check error Corrupt
|
|
SET SESSION debug_dbug=DEFAULT;
|
|
DROP TABLE t1;
|