diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-01-18 10:43:09 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-01-18 10:43:09 -0700 |
commit | c862fa36467651ef3e3cb3acad61e42fc0b3e07c (patch) | |
tree | cef290a907a4640c4b54eae54d2739caa4d3928a /mysql-test/t/rpl000004.test | |
parent | b86f79e050ce743798fd1e3053c61ee29e6d757f (diff) | |
download | mariadb-git-c862fa36467651ef3e3cb3acad61e42fc0b3e07c.tar.gz |
client/mysqltest.c
merged continued
mysql-test/t/rpl000004.test
added a test for am empty table
mysql-test/r/rpl000004.result
New BitKeeper file ``mysql-test/r/rpl000004.result''
client/mysqltest.c:
merged continued
mysql-test/t/rpl000004.test:
added a test for am empty table
Diffstat (limited to 'mysql-test/t/rpl000004.test')
-rw-r--r-- | mysql-test/t/rpl000004.test | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/mysql-test/t/rpl000004.test b/mysql-test/t/rpl000004.test index 9959c272adb..c530b434d8d 100644 --- a/mysql-test/t/rpl000004.test +++ b/mysql-test/t/rpl000004.test @@ -8,17 +8,21 @@ 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; +create table t3 (word char(20) not null); connection slave; use test; 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 t3; +load table t3 from master; +check table t1; +select count(*) from t2; +select count(*) from t3; connection master; set SQL_LOG_BIN=1; -drop table if exists t1,t2; +drop table if exists t1,t2,t3; save_master_pos; connection slave; sync_with_master; |