~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_show_slave_running.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/master-slave.inc
 
2
[connection master]
7
3
SET DEBUG_SYNC= 'RESET';
8
4
include/stop_slave.inc
9
5
set global debug= 'd,dbug.before_get_running_status_yes';
21
17
Slave_IO_Running= No
22
18
Slave_SQL_Running= No
23
19
SET DEBUG_SYNC='now SIGNAL signal.io_thread_let_running';
 
20
include/wait_for_slave_param.inc [Slave_IO_Running]
24
21
Slave_running, Slave_IO_Running, Slave_SQL_Running must be OFF YES NO in three following queries
25
22
SHOW STATUS LIKE 'Slave_running';
26
23
Variable_name   Value
28
25
Slave_IO_Running= Yes
29
26
Slave_SQL_Running= No
30
27
start slave sql_thread;
 
28
include/wait_for_slave_sql_to_start.inc
31
29
Slave_running, Slave_IO_Running, Slave_SQL_Running must be ON, YES, YES in three following queries
32
30
SHOW STATUS LIKE 'Slave_running';
33
31
Variable_name   Value
37
35
set global debug= '';
38
36
SET DEBUG_SYNC= 'RESET';
39
37
End of tests
 
38
include/rpl_end.inc