mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
ef47cbd415
Problem: After START SLAVE, the Slave_IO_Status column of SHOW SLAVE STATUS goes from No to Yes asynchronously. That caused sporadic failures on pushbuild in rpl_stm_until since the test contains SHOW SLAVE STATUS right after START SLAVE. Fix: Wait until Slave_IO_Status becomes Yes after each START SLAVE. mysql-test/include/wait_for_slave_io_to_start.inc: Macro that waits until the Slave_IO_Running field of SHOW SLAVE STATUS becomes Yes. mysql-test/suite/rpl/r/rpl_stm_until.result: updated result file mysql-test/suite/rpl/t/rpl_stm_until.test: - Added wait_for_slave_io_to_start after each start slave. - Removed unused initialization of test variable $VERSION - Added comments.
100 lines
3.3 KiB
Text
100 lines
3.3 KiB
Text
# ==== Purpose ====
|
|
#
|
|
# Verify that START SLAVE UNTIL replicates until the given binlog
|
|
# position but not longer. Verify that START SLAVE UNTIL with various
|
|
# incorrect arguments gives an error.
|
|
#
|
|
# ==== Method ====
|
|
#
|
|
# On master, create a table and insert some rows. On slave, START
|
|
# SLAVE UNTIL so that it reads one event at a time, and check the
|
|
# table and the slave status each time.
|
|
#
|
|
# Then, on slave, run START SLAVE UNTIL with incorrect arguments and
|
|
# verify that it gives an error.
|
|
#
|
|
# ==== Related bugs ====
|
|
#
|
|
# Bug in this test: BUG#37717: rpl.rpl_stm_until 'stmt' fails sporadically on pushbuild
|
|
|
|
-- source include/have_binlog_format_mixed_or_statement.inc
|
|
-- source include/master-slave.inc
|
|
|
|
# Test is dependent on binlog positions
|
|
|
|
# Stop slave before it starts replication. Also sync with master
|
|
# to avoid nondeterministic behaviour.
|
|
--echo [on slave]
|
|
sync_slave_with_master;
|
|
--source include/stop_slave.inc
|
|
|
|
--echo ==== Create some events on master ====
|
|
|
|
--echo [on master]
|
|
connection master;
|
|
create table t1(n int not null auto_increment primary key);
|
|
insert into t1 values (1),(2),(3),(4);
|
|
drop table t1;
|
|
create table t2(n int not null auto_increment primary key);
|
|
insert into t2 values (1),(2);
|
|
insert into t2 values (3),(4);
|
|
drop table t2;
|
|
|
|
--echo ==== Replicate one event at a time on slave ====
|
|
|
|
# try to replicate all queries until drop of t1
|
|
--echo [on slave]
|
|
connection slave;
|
|
start slave until master_log_file='master-bin.000001', master_log_pos=323;
|
|
--source include/wait_for_slave_io_to_start.inc
|
|
--source include/wait_for_slave_sql_to_stop.inc
|
|
# here table should be still not deleted
|
|
select * from t1;
|
|
source include/show_slave_status2.inc;
|
|
|
|
# this should fail right after start
|
|
start slave until master_log_file='master-no-such-bin.000001', master_log_pos=291;
|
|
--source include/wait_for_slave_io_to_start.inc
|
|
--source include/wait_for_slave_sql_to_stop.inc
|
|
# again this table should be still not deleted
|
|
select * from t1;
|
|
source include/show_slave_status2.inc;
|
|
|
|
# try replicate all up to and not including the second insert to t2;
|
|
start slave until relay_log_file='slave-relay-bin.000004', relay_log_pos=746;
|
|
--source include/wait_for_slave_io_to_start.inc
|
|
--source include/wait_for_slave_sql_to_stop.inc
|
|
select * from t2;
|
|
source include/show_slave_status2.inc;
|
|
|
|
# clean up
|
|
start slave;
|
|
--echo [on master]
|
|
connection master;
|
|
--echo [on slave]
|
|
sync_slave_with_master;
|
|
--source include/stop_slave.inc
|
|
|
|
# this should stop immediately as we are already there
|
|
start slave until master_log_file='master-bin.000001', master_log_pos=776;
|
|
--source include/wait_for_slave_io_to_start.inc
|
|
--source include/wait_for_slave_sql_to_stop.inc
|
|
--replace_result bin.000005 bin.000004 bin.000006 bin.000004 bin.000007 bin.000004
|
|
source include/show_slave_status2.inc;
|
|
|
|
--echo ==== Test various error conditions ====
|
|
|
|
--error 1277
|
|
start slave until master_log_file='master-bin', master_log_pos=561;
|
|
--error 1277
|
|
start slave until master_log_file='master-bin.000001', master_log_pos=561, relay_log_pos=12;
|
|
--error 1277
|
|
start slave until master_log_file='master-bin.000001';
|
|
--error 1277
|
|
start slave until relay_log_file='slave-relay-bin.000002';
|
|
--error 1277
|
|
start slave until relay_log_file='slave-relay-bin.000002', master_log_pos=561;
|
|
# Warning should be given for second command
|
|
start slave sql_thread;
|
|
start slave until master_log_file='master-bin.000001', master_log_pos=776;
|
|
|