~ubuntu-branches/ubuntu/wily/mysql-5.6/wily

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2015-04-16 20:07:10 UTC
  • mto: (1.3.9 vivid-proposed)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: package-import@ubuntu.com-20150416200710-pcrsa022082zj46k
Tags: upstream-5.6.24
ImportĀ upstreamĀ versionĀ 5.6.24

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include/master-slave.inc
 
2
Warnings:
 
3
Note    ####    Sending passwords in plain text without SSL/TLS is extremely insecure.
 
4
Note    ####    Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
 
5
[connection master]
 
6
CHANGE MASTER TO MASTER_HEARTBEAT_PERIOD=5;
 
7
SET @save_old_slave_net_timeout=@@global.slave_net_timeout;
 
8
SET @@global.slave_net_timeout=10;
 
9
include/start_slave.inc
 
10
SET @save_debug=@@global.debug;
 
11
SET GLOBAL DEBUG='+d,inject_2sec_sleep_when_skipping_an_event';
 
12
CREATE TABLE t1(i INT) engine=innodb;
 
13
INSERT INTO t1 VALUES (1);
 
14
include/sync_slave_sql_with_master.inc
 
15
include/stop_slave.inc
 
16
include/stop_dump_threads.inc
 
17
SET GLOBAL DEBUG='+d,hold_dump_thread_inside_inner_loop';
 
18
DROP TABLE t1;
 
19
include/start_slave.inc
 
20
SET DEBUG_SYNC='now WAIT_FOR signal_inside_inner_loop';
 
21
include/stop_slave.inc
 
22
SET GLOBAL DEBUG='-d,hold_dump_thread_inside_inner_loop';
 
23
include/start_slave.inc
 
24
SET DEBUG_SYNC='now signal signal_continue';
 
25
include/sync_slave_sql_with_master.inc
 
26
SET GLOBAL DEBUG=@save_debug;
 
27
SET @@global.slave_net_timeout=@save_old_slave_net_timeout;
 
28
include/rpl_end.inc