diff options
author | unknown <monty@donna.mysql.com> | 2001-01-03 02:15:48 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2001-01-03 02:15:48 +0200 |
commit | 2218bce9cc1ac5bac5d1b27362ff55663768e4c2 (patch) | |
tree | ee1c300b5d4d96d2aa4fd1efea5bbf5e7a01628a /mysql-test/t/rpl000004.test | |
parent | 51680c9465d403d6698277d352ab0b04d7064a49 (diff) | |
download | mariadb-git-2218bce9cc1ac5bac5d1b27362ff55663768e4c2.tar.gz |
Cleanup of tests to make them less dependent of eachother
Added new big select test
mysql-test/r/rpl000004.a.result:
Cleanup
mysql-test/r/show_check.result:
Cleanup
mysql-test/r/shw000001.result:
Cleanup
mysql-test/t/fulltext_multi.test:
Cleanup
mysql-test/t/fulltext_order_by.test:
Cleanup
mysql-test/t/rpl000001.test:
Cleanup
mysql-test/t/rpl000002.test:
Cleanup
mysql-test/t/rpl000003.test:
Cleanup
mysql-test/t/rpl000004.test:
Cleanup
mysql-test/t/rpl000005.test:
Cleanup
mysql-test/t/rpl000006.test:
Cleanup
mysql-test/t/rpl000007.test:
Cleanup
mysql-test/t/rpl000008.test:
Cleanup
mysql-test/t/rpl000009.test:
Cleanup
mysql-test/t/rpl000010.test:
Cleanup
mysql-test/t/rpl000011.test:
Cleanup
mysql-test/t/rpl000012.test:
Cleanup
mysql-test/t/rpl000013.test:
Cleanup
mysql-test/t/rpl000014.test:
Cleanup
mysql-test/t/rpl000015.test:
Cleanup
mysql-test/t/rpl000016.test:
Cleanup
mysql-test/t/sel000001.test:
Cleanup
mysql-test/t/sel000002.test:
Cleanup
mysql-test/t/sel000003.test:
Cleanup
mysql-test/t/sel000031.test:
Cleanup
mysql-test/t/sel000032.test:
Cleanup
mysql-test/t/sel000033.test:
Cleanup
mysql-test/t/sel000100.test:
Cleanup
mysql-test/t/show_check.test:
Cleanup
mysql-test/t/shw000001.test:
Cleanup
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; |