mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Rmove RESET MASTER from have_log_bin.inc because it can cause some
test to stall for slave_net_timeout and cause some test case fail
This commit is contained in:
@ -1,7 +1,6 @@
|
|||||||
# ==== Purpose ====
|
# ==== Purpose ====
|
||||||
#
|
#
|
||||||
# Ensure that the server is running with binlogging on and reset the
|
# Ensure that the server is running with binlogging on
|
||||||
# binlog.
|
|
||||||
#
|
#
|
||||||
# ==== Usage ====
|
# ==== Usage ====
|
||||||
#
|
#
|
||||||
@ -10,5 +9,4 @@
|
|||||||
-- require r/have_log_bin.require
|
-- require r/have_log_bin.require
|
||||||
disable_query_log;
|
disable_query_log;
|
||||||
show variables like "log_bin";
|
show variables like "log_bin";
|
||||||
RESET MASTER;
|
|
||||||
enable_query_log;
|
enable_query_log;
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
reset master;
|
||||||
create table t1 (a int);
|
create table t1 (a int);
|
||||||
insert into t1 values (1);
|
insert into t1 values (1);
|
||||||
insert into t1 values (2);
|
insert into t1 values (2);
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
-- source include/have_binlog_format_row.inc
|
-- source include/have_binlog_format_row.inc
|
||||||
|
#
|
||||||
|
# Reset master to cleanup binlog
|
||||||
|
#
|
||||||
|
reset master;
|
||||||
|
|
||||||
#
|
#
|
||||||
# Write different events to binlog
|
# Write different events to binlog
|
||||||
#
|
#
|
||||||
|
Reference in New Issue
Block a user