summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlice Sherepa <alice.sherepa@gmail.com>2020-01-16 10:23:30 +0100
committerAlice Sherepa <alice.sherepa@gmail.com>2020-01-16 10:25:01 +0100
commit0f0c284ec046c735388bcff1b7c9f09dfa7bc953 (patch)
tree6373ca7ffd70b38b309539259169b1075a20bde5
parenta382f69e240b3fa0e4d58c83459263984c6bd87e (diff)
downloadmariadb-git-0f0c284ec046c735388bcff1b7c9f09dfa7bc953.tar.gz
fix for rpl_slave_load_remove_tmpfile.test
-rw-r--r--mysql-test/suite/rpl/r/rpl_slave_load_remove_tmpfile.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_slave_load_remove_tmpfile.result b/mysql-test/suite/rpl/r/rpl_slave_load_remove_tmpfile.result
index aac0d956e6c..8f855813554 100644
--- a/mysql-test/suite/rpl/r/rpl_slave_load_remove_tmpfile.result
+++ b/mysql-test/suite/rpl/r/rpl_slave_load_remove_tmpfile.result
@@ -1,7 +1,7 @@
include/master-slave.inc
[connection master]
connection slave;
-set @saved_dbug = @@global.debug_dbug;
+SET @saved_dbug = @@GLOBAL.debug_dbug;
SET @@global.debug_dbug= '+d,remove_slave_load_file_before_write';
connection master;
create table t1(a int not null auto_increment, b int, primary key(a)) engine=innodb;
@@ -22,5 +22,5 @@ call mtr.add_suppression("Slave: Can't get stat of .*");
call mtr.add_suppression("Slave SQL: Error .Can.t get stat of.* error.* 13");
call mtr.add_suppression("Slave: File.* not found.*");
call mtr.add_suppression("Slave SQL: Error .File.* not found.* error.* 29");
-set @@global.debug_dbug = @saved_dbug;
+SET @@GLOBAL.debug_dbug = @saved_dbug;
include/rpl_end.inc