diff options
author | monty@donna.mysql.com <> | 2001-01-03 02:15:48 +0200 |
---|---|---|
committer | monty@donna.mysql.com <> | 2001-01-03 02:15:48 +0200 |
commit | 9ff59511a5001a07a3c1ef2c4531f69fb8180a72 (patch) | |
tree | ee1c300b5d4d96d2aa4fd1efea5bbf5e7a01628a /mysql-test/t/rpl000002.test | |
parent | ac0ceaf28e35ca50dfa606d3fd7ebb8e6e6e0085 (diff) | |
download | mariadb-git-9ff59511a5001a07a3c1ef2c4531f69fb8180a72.tar.gz |
Cleanup of tests to make them less dependent of eachother
Added new big select test
Diffstat (limited to 'mysql-test/t/rpl000002.test')
-rw-r--r-- | mysql-test/t/rpl000002.test | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/mysql-test/t/rpl000002.test b/mysql-test/t/rpl000002.test index 29741b5b6cb..7a29088dc7a 100644 --- a/mysql-test/t/rpl000002.test +++ b/mysql-test/t/rpl000002.test @@ -1,11 +1,12 @@ source include/master-slave.inc; connection master; use test; -drop table if exists x; -create table x(n int auto_increment primary key); +drop table if exists t1; +create table t1 (n int auto_increment primary key); set insert_id = 2000; -insert into x values (NULL),(NULL),(NULL); +insert into t1 values (NULL),(NULL),(NULL); connection slave; use test; -sleep 0.5; -@r/rpl000002.result select * from x; +sleep 2; +@r/rpl000002.result select * from t1; +drop table t1; |