~ubuntu-branches/ubuntu/utopic/mariadb-5.5/utopic-security

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_heartbeat_debug.result

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2014-08-27 21:12:36 UTC
  • mfrom: (2.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20140827211236-se41hwfe4xy0hpef
* d/control: Removed Provides: libmysqlclient-dev (Closes: #759309)
* d/control: Removed Provides: libmysqld-dev with same motivation
* Re-introduced tha HPPA build patch as the upstream fix wasn't complete
* Fixed all kFreeBSD build and test suite issues
* Added Italian translation (Closes: #759813)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include/master-slave.inc
 
2
[connection master]
 
3
include/stop_slave.inc
 
4
set @restore_slave_net_timeout= @@global.slave_net_timeout;
 
5
set @@global.slave_net_timeout= 10;
 
6
show status like 'Slave_heartbeat_period';;
 
7
Variable_name   Slave_heartbeat_period
 
8
Value   60.000
 
9
SET @save_dbug= @@GLOBAL.debug_dbug;
 
10
SET GLOBAL debug_dbug="+d,simulate_slave_heartbeat_network_error";
 
11
CALL mtr.add_suppression('SET @master_heartbeat_period to master failed with error');
 
12
CALL mtr.add_suppression('Master command COM_REGISTER_SLAVE failed: failed registering on master, reconnecting to try again');
 
13
include/start_slave.inc
 
14
drop table if exists t1;
 
15
CREATE TABLE t1 (a INT PRIMARY KEY);
 
16
INSERT INTO t1 VALUES (1);
 
17
SELECT * FROM t1;
 
18
a
 
19
1
 
20
drop table t1;
 
21
include/stop_slave.inc
 
22
SET GLOBAL debug_dbug=@save_dbug;
 
23
set @@global.slave_net_timeout= @restore_slave_net_timeout;
 
24
include/start_slave.inc
 
25
include/rpl_end.inc