mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
rename debug variable to debug_dbug, to make test pass in release builds
(and to follow the naming conventons). keep old debug variable, but mark it as deprecated.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
include/master-slave.inc
|
||||
[connection master]
|
||||
SET @@GLOBAL.DEBUG = '+d,remove_slave_load_file_before_write';
|
||||
SET @@global.debug_dbug= '+d,remove_slave_load_file_before_write';
|
||||
create table t1(a int not null auto_increment, b int, primary key(a)) engine=innodb;
|
||||
start transaction;
|
||||
insert into t1(b) values (1);
|
||||
@@ -17,5 +17,5 @@ call mtr.add_suppression("Slave: Can't get stat of .*");
|
||||
call mtr.add_suppression("Slave SQL: Error .Can.t get stat of.* Error_code: 13");
|
||||
call mtr.add_suppression("Slave: File.* not found.*");
|
||||
call mtr.add_suppression("Slave SQL: Error .File.* not found.* Error_code: 29");
|
||||
SET @@GLOBAL.DEBUG = '';
|
||||
SET @@global.debug_dbug= '';
|
||||
include/rpl_end.inc
|
||||
|
Reference in New Issue
Block a user