summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl_log_pos.test
blob: 1a9a5bc34484ab6e4d11ca94ec3353d6d18a83ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#
# Testing of setting slave to wrong log position with master_log_pos
#
source include/master-slave.inc;
show master status;
save_master_pos;
connection slave;
sync_with_master;
--replace_result $MASTER_MYPORT MASTER_PORT
show slave status;
slave stop;
change master to master_log_pos=73;
slave start;
sleep 5;
slave stop;

change master to master_log_pos=73;
--replace_result $MASTER_MYPORT MASTER_PORT
show slave status;
slave start;
sleep 5;
--replace_result $MASTER_MYPORT MASTER_PORT
show slave status;
slave stop;
change master to master_log_pos=173;
slave start;
sleep 2;
--replace_result $MASTER_MYPORT MASTER_PORT
show slave status;
connection master;
show master status;
create table if not exists t1 (n int);
drop table if exists t1;
create table t1 (n int);
insert into t1 values (1),(2),(3);
save_master_pos;
connection slave;
slave stop;
change master to master_log_pos=79;
slave start;
sync_with_master;
select * from t1;
connection master;
drop table t1;
save_master_pos;
connection slave;
sync_with_master;