summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/t/rpl_000011.test
blob: faad2242235d09d2f73fb1dd1afae47e295c8521 (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
#
# Test very simply slave replication (to ensure it works at all)
# In addition, test also:
# MDEV-5829 STOP SLAVE resets global status variables
#

source include/master-slave.inc;

create table t1 (n int);
insert into t1 values(1);
sync_slave_with_master; 
show global status like 'com_insert';
stop slave;
show global status like 'com_insert';
--source include/wait_for_slave_to_stop.inc
start slave;
--source include/wait_for_slave_to_start.inc
connection master;
insert into t1 values(2);
#let slave catch up
sync_slave_with_master;
select * from t1;
connection master;
drop table t1;
sync_slave_with_master;

# End of 4.1 tests
--source include/rpl_end.inc