summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/t/MW-86-wait1.test
diff options
context:
space:
mode:
authorJan Lindström <jan.lindstrom@mariadb.com>2019-02-27 13:15:03 +0200
committerJan Lindström <jan.lindstrom@mariadb.com>2019-02-28 13:31:57 +0200
commit622e9e8a7a5e9babe1dd41e7499c20f396b6ebdf (patch)
treea497c1c7cf641c49323e2d5df2f74a4402e2e4f0 /mysql-test/suite/galera/t/MW-86-wait1.test
parent5a87e3ee874d04325bc6f106c9862c96a6a35172 (diff)
downloadmariadb-git-622e9e8a7a5e9babe1dd41e7499c20f396b6ebdf.tar.gz
MDEV-18265: Replace deprecated variable debug to debug_dbug on Galera tests
Replaced debug to debug_dbug on 10.1 on galera suite. Nothing to do in wsrep and galera_3nodes suites.
Diffstat (limited to 'mysql-test/suite/galera/t/MW-86-wait1.test')
-rw-r--r--mysql-test/suite/galera/t/MW-86-wait1.test5
1 files changed, 2 insertions, 3 deletions
diff --git a/mysql-test/suite/galera/t/MW-86-wait1.test b/mysql-test/suite/galera/t/MW-86-wait1.test
index 6c0982ad8b3..40a7882829b 100644
--- a/mysql-test/suite/galera/t/MW-86-wait1.test
+++ b/mysql-test/suite/galera/t/MW-86-wait1.test
@@ -12,7 +12,7 @@
SELECT @@debug_sync;
SET SESSION wsrep_sync_wait = 1;
-SET GLOBAL debug = "+d,sync.wsrep_apply_cb";
+SET GLOBAL debug_dbug = "d,sync.wsrep_apply_cb";
--connection node_1
CREATE TABLE t_wait1 (f1 INTEGER) ENGINE=InnoDB;
@@ -90,7 +90,7 @@ SHOW WARNINGS;
--enable_result_log
# Unblock the background INSERT and remove the sync point.
-SET GLOBAL debug = "-d,sync.wsrep_apply_cb";
+SET GLOBAL debug_dbug = "";
SET SESSION debug_sync = "now SIGNAL signal.wsrep_apply_cb";
SET SESSION wsrep_sync_wait = default;
@@ -99,7 +99,6 @@ SET SESSION wsrep_sync_wait = default;
# from the test.
DROP TABLE t_wait1;
-SET GLOBAL debug = NULL;
SET debug_sync='RESET';
# Make sure no pending signals are leftover to surprise subsequent tests.