~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
stop slave;
2
 
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
3
 
reset master;
4
 
reset slave;
5
 
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
6
 
start slave;
 
1
include/rpl_init.inc [topology=1->2->1]
7
2
show variables like 'relay_log%';
8
3
Variable_name   Value
9
 
relay_log       MYSQLD_DATADIR/relay-log
 
4
relay_log       
10
5
relay_log_index 
11
6
relay_log_info_file     relay-log.info
12
7
relay_log_purge ON
13
8
relay_log_space_limit   0
14
 
stop slave;
15
 
change master to master_host='127.0.0.1',master_user='root',
16
 
master_password='',master_port=MASTER_PORT;
17
 
start slave;
18
 
stop slave;
19
 
change master to master_host='127.0.0.1',master_user='root',
20
 
master_password='',master_port=SLAVE_PORT;
21
 
include/start_slave.inc
22
9
CREATE TABLE t1 (a INT KEY) ENGINE= MyISAM;
23
10
INSERT INTO t1 VALUE(1);
24
11
FLUSH LOGS;
25
12
INSERT INTO t1 VALUE(2);
26
 
Checking that both slave threads are running.
27
 
Relay_Log_File  relay-log.000003
 
13
include/check_slave_is_running.inc
 
14
Relay_Log_File = 'mysqld-relay-bin.000003'
 
15
include/rpl_end.inc