diff options
Diffstat (limited to 'mysql-test/r/archive_debug.result')
-rw-r--r-- | mysql-test/r/archive_debug.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/archive_debug.result b/mysql-test/r/archive_debug.result index cc5a3761a99..7bc6a113217 100644 --- a/mysql-test/r/archive_debug.result +++ b/mysql-test/r/archive_debug.result @@ -4,9 +4,9 @@ # CREATE TABLE t1(a INT) ENGINE=ARCHIVE; INSERT INTO t1 VALUES(1); -SET SESSION debug='d,simulate_archive_open_failure'; +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=DEFAULT; +SET SESSION debug_dbug=DEFAULT; DROP TABLE t1; |