diff options
Diffstat (limited to 'mysql-test/t/rpl000004.test')
-rw-r--r-- | mysql-test/t/rpl000004.test | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/mysql-test/t/rpl000004.test b/mysql-test/t/rpl000004.test index b7ab81a0553..cd23078112d 100644 --- a/mysql-test/t/rpl000004.test +++ b/mysql-test/t/rpl000004.test @@ -2,17 +2,18 @@ source include/master-slave.inc; connection master; use test; set SQL_LOG_BIN=0; -drop table if exists words; -create table words (word char(20) not null, index(word)); -load data infile '../../std_data/words.dat' into table words; -drop table if exists words1; -create table words1 (word char(20) not null); -load data infile '../../std_data/words.dat' into table words1; +drop table if exists t1; +create table t1 (word char(20) not null, index(word)); +load data infile '../../std_data/words.dat' into table t1; +drop table if exists t2; +create table t2 (word char(20) not null); +load data infile '../../std_data/words.dat' into table t2; connection slave; use test; -drop table if exists words; -load table words from master; -drop table if exists words1; -load table words1 from master; -@r/rpl000004.a.result check table words; -@r/rpl000004.b.result select count(*) from words1; +drop table if exists t1; +load table t1 from master; +drop table if exists t2; +load table t2 from master; +@r/rpl000004.a.result check table t1; +@r/rpl000004.b.result select count(*) from t2; +drop table if exists t1,t2; |