summaryrefslogtreecommitdiff
path: root/mysql-test/r/merge-big.result
diff options
context:
space:
mode:
authorAlice Sherepa <alice.sherepa@gmail.com>2019-12-23 21:48:59 +0100
committerAlice Sherepa <alice.sherepa@gmail.com>2020-01-15 18:06:24 +0100
commit451573fab1071afe2f82a3bf65f5b14fa0125d16 (patch)
tree1a05e0c10072f04994a07d47a596ece64930f872 /mysql-test/r/merge-big.result
parent800d1f3010e5b34b343008514017a29fa6ce7fd5 (diff)
downloadmariadb-git-451573fab1071afe2f82a3bf65f5b14fa0125d16.tar.gz
MDEV-21360 debug_dbug pre-test value restoration issues
Diffstat (limited to 'mysql-test/r/merge-big.result')
-rw-r--r--mysql-test/r/merge-big.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/merge-big.result b/mysql-test/r/merge-big.result
index 3b6e116986e..bd188d7a856 100644
--- a/mysql-test/r/merge-big.result
+++ b/mysql-test/r/merge-big.result
@@ -7,7 +7,7 @@ drop table if exists t1,t2,t3,t4,t5,t6;
CREATE TABLE t1 (c1 INT) ENGINE= MyISAM;
LOCK TABLE t1 WRITE;
connect con1,localhost,root,,;
-SET @orig_debug=@@debug;
+SET @orig_debug=@@global.debug_dbug;
SET GLOBAL debug_dbug="+d,sleep_open_and_lock_after_open";
INSERT INTO t1 VALUES (1);
connection default;