2008-07-23 13:23:52 +02:00
|
|
|
# ==== 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
|
|
|
|
|
2006-08-30 10:22:43 +03:00
|
|
|
-- source include/have_binlog_format_mixed_or_statement.inc
|
2005-12-22 06:39:02 +01:00
|
|
|
-- source include/master-slave.inc
|
|
|
|
|
|
|
|
# Test is dependent on binlog positions
|
2003-09-14 00:13:41 +04:00
|
|
|
|
2008-07-23 13:23:52 +02:00
|
|
|
# Stop slave before it starts replication. Also sync with master
|
|
|
|
# to avoid nondeterministic behaviour.
|
|
|
|
--echo [on slave]
|
2008-07-10 18:09:39 +02:00
|
|
|
sync_slave_with_master;
|
|
|
|
--source include/stop_slave.inc
|
2003-09-14 00:13:41 +04:00
|
|
|
|
2008-07-23 13:23:52 +02:00
|
|
|
--echo ==== Create some events on master ====
|
|
|
|
|
|
|
|
--echo [on master]
|
2003-09-14 00:13:41 +04:00
|
|
|
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;
|
|
|
|
|
2008-07-23 13:23:52 +02:00
|
|
|
--echo ==== Replicate one event at a time on slave ====
|
|
|
|
|
2003-09-14 00:13:41 +04:00
|
|
|
# try to replicate all queries until drop of t1
|
2008-07-23 13:23:52 +02:00
|
|
|
--echo [on slave]
|
2003-09-14 00:13:41 +04:00
|
|
|
connection slave;
|
2005-12-22 06:39:02 +01:00
|
|
|
start slave until master_log_file='master-bin.000001', master_log_pos=323;
|
2008-07-23 13:23:52 +02:00
|
|
|
--source include/wait_for_slave_io_to_start.inc
|
2007-06-19 16:06:11 +05:00
|
|
|
--source include/wait_for_slave_sql_to_stop.inc
|
2003-09-14 00:13:41 +04:00
|
|
|
# here table should be still not deleted
|
|
|
|
select * from t1;
|
2008-01-14 15:38:02 +08:00
|
|
|
source include/show_slave_status2.inc;
|
2003-09-14 00:13:41 +04:00
|
|
|
|
|
|
|
# this should fail right after start
|
|
|
|
start slave until master_log_file='master-no-such-bin.000001', master_log_pos=291;
|
2008-07-23 13:23:52 +02:00
|
|
|
--source include/wait_for_slave_io_to_start.inc
|
2007-06-19 16:06:11 +05:00
|
|
|
--source include/wait_for_slave_sql_to_stop.inc
|
2003-09-14 00:13:41 +04:00
|
|
|
# again this table should be still not deleted
|
|
|
|
select * from t1;
|
2008-01-14 15:38:02 +08:00
|
|
|
source include/show_slave_status2.inc;
|
2003-09-14 00:13:41 +04:00
|
|
|
|
2005-12-22 06:39:02 +01:00
|
|
|
# try replicate all up to and not including the second insert to t2;
|
2005-03-25 14:51:17 +01:00
|
|
|
start slave until relay_log_file='slave-relay-bin.000004', relay_log_pos=746;
|
2008-07-23 13:23:52 +02:00
|
|
|
--source include/wait_for_slave_io_to_start.inc
|
2007-06-19 16:06:11 +05:00
|
|
|
--source include/wait_for_slave_sql_to_stop.inc
|
2003-09-14 00:13:41 +04:00
|
|
|
select * from t2;
|
2008-01-14 15:38:02 +08:00
|
|
|
source include/show_slave_status2.inc;
|
2003-09-14 00:13:41 +04:00
|
|
|
|
|
|
|
# clean up
|
|
|
|
start slave;
|
2008-07-23 13:23:52 +02:00
|
|
|
--echo [on master]
|
2003-09-14 00:13:41 +04:00
|
|
|
connection master;
|
2008-07-23 13:23:52 +02:00
|
|
|
--echo [on slave]
|
2008-07-10 18:09:39 +02:00
|
|
|
sync_slave_with_master;
|
|
|
|
--source include/stop_slave.inc
|
2003-09-14 00:13:41 +04:00
|
|
|
|
2003-12-19 22:40:23 +01:00
|
|
|
# this should stop immediately as we are already there
|
2005-03-25 14:51:17 +01:00
|
|
|
start slave until master_log_file='master-bin.000001', master_log_pos=776;
|
2008-07-23 13:23:52 +02:00
|
|
|
--source include/wait_for_slave_io_to_start.inc
|
2007-06-19 16:06:11 +05:00
|
|
|
--source include/wait_for_slave_sql_to_stop.inc
|
2007-06-11 22:15:39 +02:00
|
|
|
--replace_result bin.000005 bin.000004 bin.000006 bin.000004 bin.000007 bin.000004
|
2008-01-14 15:38:02 +08:00
|
|
|
source include/show_slave_status2.inc;
|
2003-09-14 00:13:41 +04:00
|
|
|
|
2008-07-23 13:23:52 +02:00
|
|
|
--echo ==== Test various error conditions ====
|
|
|
|
|
2004-02-16 10:03:25 +02:00
|
|
|
--error 1277
|
2003-09-14 00:13:41 +04:00
|
|
|
start slave until master_log_file='master-bin', master_log_pos=561;
|
2004-02-16 10:03:25 +02:00
|
|
|
--error 1277
|
2003-09-14 00:13:41 +04:00
|
|
|
start slave until master_log_file='master-bin.000001', master_log_pos=561, relay_log_pos=12;
|
2004-02-16 10:03:25 +02:00
|
|
|
--error 1277
|
2003-09-14 00:13:41 +04:00
|
|
|
start slave until master_log_file='master-bin.000001';
|
2004-02-16 10:03:25 +02:00
|
|
|
--error 1277
|
2003-09-14 00:13:41 +04:00
|
|
|
start slave until relay_log_file='slave-relay-bin.000002';
|
2004-02-16 10:03:25 +02:00
|
|
|
--error 1277
|
2003-09-14 00:13:41 +04:00
|
|
|
start slave until relay_log_file='slave-relay-bin.000002', master_log_pos=561;
|
2005-03-16 04:32:47 +03:00
|
|
|
# Warning should be given for second command
|
2003-09-14 00:13:41 +04:00
|
|
|
start slave sql_thread;
|
2005-03-25 14:51:17 +01:00
|
|
|
start slave until master_log_file='master-bin.000001', master_log_pos=776;
|
2005-07-28 03:22:47 +03:00
|
|
|
|