summaryrefslogtreecommitdiff
path: root/mysql-test/r/merge-big.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/merge-big.result')
-rw-r--r--mysql-test/r/merge-big.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/merge-big.result b/mysql-test/r/merge-big.result
index b75c70f986f..b17140a7c79 100644
--- a/mysql-test/r/merge-big.result
+++ b/mysql-test/r/merge-big.result
@@ -8,7 +8,7 @@ CREATE TABLE t1 (c1 INT) ENGINE= MyISAM;
LOCK TABLE t1 WRITE;
# connection con1
SET @orig_debug=@@debug;
-SET GLOBAL debug="+d,sleep_open_and_lock_after_open";
+SET GLOBAL debug_dbug="+d,sleep_open_and_lock_after_open";
INSERT INTO t1 VALUES (1);
# connection default
# Let INSERT go into thr_multi_lock().
@@ -22,6 +22,6 @@ SELECT * FROM t1;
c1
UNLOCK TABLES;
# connection con1
-SET GLOBAL debug=@orig_debug;
+SET GLOBAL debug_dbug=@orig_debug;
# connection default
DROP TABLE t1;