MOON
Server: Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
System: Linux csr818.wilogic.com 2.6.18-419.el5xen #1 SMP Fri Feb 24 22:50:37 UTC 2017 x86_64
User: obrechts (544)
PHP: 5.4.45
Disabled: NONE
Upload Files
File: //usr/share/mysql-test/suite/manual/t/rpl_replication_delay.test
#
# Testing replication delay reporting (bug#29309)
# there is an unavoidable non-determinism in the test
# please compare the results with the comments 
#


source include/master-slave.inc;

connection slave;

--echo # Second_behind reports 0
let $status_items= Seconds_Behind_Master;
source include/show_slave_status.inc;
sleep 3;

### bug emulation

connection master;
drop table if exists t1;
create table t1 (f1 int);
sleep 3;

#connection slave;
sync_slave_with_master;
flush logs /* contaminate rli->last_master_timestamp */;

connection slave;
lock table t1 write;

connection master;
insert into t1 values (1);

sleep 3;

connection slave;
--echo # bug emulated: reports slave threads starting time about 3*3 not 3 secs
source include/show_slave_status.inc;
unlock tables;

connection master;
sync_slave_with_master;

### bugfix


connection slave;
flush logs /* this time rli->last_master_timestamp is not affected */;
lock table t1 write;

connection master;
insert into t1 values (2);
sleep 3;

connection slave;
--echo # reports the correct diff with master query time about 3+3 secs
source include/show_slave_status.inc;
unlock tables;

connection master;
drop table t1;

--source include/rpl_end.inc