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

« back to all changes in this revision

Viewing changes to mysql-test/suite/engines/funcs/t/rpl_slave_status.test

  • 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:
22
22
--enable_warnings
23
23
create table t1 (n int);
24
24
insert into t1 values (1);
25
 
sync_slave_with_master;
 
25
save_master_pos;
 
26
connection slave;
 
27
sync_with_master;
26
28
select * from t1;
27
29
 
28
30
# 3. Delete new replication user
38
40
start slave;
39
41
 
40
42
# 5. Make sure Slave_IO_Running = No
41
 
let $slave_io_errno= 1045;
42
 
source include/wait_for_slave_io_error.inc;
 
43
--replace_result $MASTER_MYPORT MASTER_MYPORT
 
44
# Column 1 is replaced, since the output can be either
 
45
# "Connecting to master" or "Waiting for master update"
 
46
--replace_column 1 # 7 # 8 # 9 # 22 # 23 # 35 # 36 #
 
47
--vertical_results
 
48
show slave status;
43
49
 
44
50
# Cleanup (Note that slave IO thread is not running)
45
51
connection slave;