mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
BUG#50397 rpl.rpl_heartbeat_basic fails in mysql-trunk-merge
Resetting the master before stopping the slave was generating the message "[ERROR] Slave I/O: Got fatal error 1236 from master when reading data from binary log: 'could not find next log', Error_code: 1236". In consequence, the test case was failing because the message had not been suppressed. To circumvent the failure, we rewrote the test stopping the slave before resetting the master. We prefer this alternative rather than suppressing the message.
This commit is contained in:
@ -266,15 +266,16 @@ Reload master
|
|||||||
Heartbeat event received
|
Heartbeat event received
|
||||||
|
|
||||||
*** Circular replication ***
|
*** Circular replication ***
|
||||||
RESET MASTER;
|
stop slave;
|
||||||
CREATE TABLE t1 (a INT PRIMARY KEY, b VARCHAR(10));
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||||
|
reset master;
|
||||||
|
reset slave;
|
||||||
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||||
|
start slave;
|
||||||
include/stop_slave.inc
|
include/stop_slave.inc
|
||||||
RESET MASTER;
|
|
||||||
RESET SLAVE;
|
|
||||||
CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_PORT=MASTER_PORT, MASTER_USER='root', MASTER_HEARTBEAT_PERIOD=0.1, MASTER_LOG_FILE='MASTER_BINLOG';
|
|
||||||
RESET SLAVE;
|
|
||||||
CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_PORT=SLAVE_PORT, MASTER_USER='root', MASTER_HEARTBEAT_PERIOD=1, MASTER_LOG_FILE='SLAVE_BINLOG';
|
CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_PORT=SLAVE_PORT, MASTER_USER='root', MASTER_HEARTBEAT_PERIOD=1, MASTER_LOG_FILE='SLAVE_BINLOG';
|
||||||
include/start_slave.inc
|
include/start_slave.inc
|
||||||
|
CREATE TABLE t1 (a INT PRIMARY KEY, b VARCHAR(10));
|
||||||
INSERT INTO t1 VALUES(1, 'on master');
|
INSERT INTO t1 VALUES(1, 'on master');
|
||||||
include/start_slave.inc
|
include/start_slave.inc
|
||||||
INSERT INTO t1 VALUES(2, 'on slave');
|
INSERT INTO t1 VALUES(2, 'on slave');
|
||||||
|
@ -473,23 +473,17 @@ let $status_var_comparsion= >;
|
|||||||
# Circular replication
|
# Circular replication
|
||||||
--echo *** Circular replication ***
|
--echo *** Circular replication ***
|
||||||
# Configure circular replication
|
# Configure circular replication
|
||||||
--connection master
|
--source include/master-slave-reset.inc
|
||||||
RESET MASTER;
|
--connection slave
|
||||||
let $master_binlog= query_get_value(SHOW MASTER STATUS, File, 1);
|
|
||||||
CREATE TABLE t1 (a INT PRIMARY KEY, b VARCHAR(10));
|
|
||||||
--sync_slave_with_master
|
|
||||||
--source include/stop_slave.inc
|
--source include/stop_slave.inc
|
||||||
RESET MASTER;
|
|
||||||
let $slave_binlog= query_get_value(SHOW MASTER STATUS, File, 1);
|
let $slave_binlog= query_get_value(SHOW MASTER STATUS, File, 1);
|
||||||
RESET SLAVE;
|
|
||||||
--replace_result $MASTER_MYPORT MASTER_PORT $master_binlog MASTER_BINLOG
|
|
||||||
eval CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_PORT=$MASTER_MYPORT, MASTER_USER='root', MASTER_HEARTBEAT_PERIOD=0.1, MASTER_LOG_FILE='$master_binlog';
|
|
||||||
--connection master
|
--connection master
|
||||||
RESET SLAVE;
|
|
||||||
--replace_result $SLAVE_MYPORT SLAVE_PORT $slave_binlog SLAVE_BINLOG
|
--replace_result $SLAVE_MYPORT SLAVE_PORT $slave_binlog SLAVE_BINLOG
|
||||||
eval CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_PORT=$SLAVE_MYPORT, MASTER_USER='root', MASTER_HEARTBEAT_PERIOD=1, MASTER_LOG_FILE='$slave_binlog';
|
eval CHANGE MASTER TO MASTER_HOST='127.0.0.1', MASTER_PORT=$SLAVE_MYPORT, MASTER_USER='root', MASTER_HEARTBEAT_PERIOD=1, MASTER_LOG_FILE='$slave_binlog';
|
||||||
--source include/start_slave.inc
|
--source include/start_slave.inc
|
||||||
|
|
||||||
# Insert data on master and on slave and make sure that it replicated for both directions
|
# Insert data on master and on slave and make sure that it replicated for both directions
|
||||||
|
CREATE TABLE t1 (a INT PRIMARY KEY, b VARCHAR(10));
|
||||||
INSERT INTO t1 VALUES(1, 'on master');
|
INSERT INTO t1 VALUES(1, 'on master');
|
||||||
--save_master_pos
|
--save_master_pos
|
||||||
--connection slave
|
--connection slave
|
||||||
|
Reference in New Issue
Block a user