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

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/t/rpl_loadfile.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:
58
58
#     vii) assert that the contents of master and slave 
59
59
#          table are the same
60
60
 
61
 
connection master;
62
 
source include/reset_master_and_slave.inc;
 
61
--source include/rpl_reset.inc
63
62
 
64
63
connection master;
65
64
let $file= $MYSQLTEST_VARDIR/tmp/bug_39701.data;
105
104
#            if the file was removed before the slave started,
106
105
#            meaning that contents were indeed transfered
107
106
#            through binlog (in row format)
108
 
let $diff_table_1=master:test.t1;
109
 
let $diff_table_2=slave:test.t1;
 
107
let $diff_tables= master:t1, slave:t1;
110
108
source include/diff_tables.inc;
111
109
 
112
110
# CLEAN UP
 
111
--connection master
113
112
DROP TABLE t1;
114
113
DROP PROCEDURE p;
115
 
sync_slave_with_master;
 
114
 
 
115
--source include/rpl_end.inc