diff options
author | unknown <vva@eagle.mysql.r18.ru> | 2002-12-30 21:42:02 +0400 |
---|---|---|
committer | unknown <vva@eagle.mysql.r18.ru> | 2002-12-30 21:42:02 +0400 |
commit | 23af1755f4e060b1121cae6a86df7510b3bba1b5 (patch) | |
tree | df50a5edebb70f20183f9526981f7e13b1ce5415 /mysql-test/t/rpl_temporary.test | |
parent | 49efae72b1a4ae96d0b790e804417154e4300e25 (diff) | |
download | mariadb-git-23af1755f4e060b1121cae6a86df7510b3bba1b5.tar.gz |
fixing rpl_temporary.test for FreeBSD/Linux thread-order (it add 4 sec. sleep)
Diffstat (limited to 'mysql-test/t/rpl_temporary.test')
-rw-r--r-- | mysql-test/t/rpl_temporary.test | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/t/rpl_temporary.test b/mysql-test/t/rpl_temporary.test index a924e628fd4..1cb53c77f1f 100644 --- a/mysql-test/t/rpl_temporary.test +++ b/mysql-test/t/rpl_temporary.test @@ -12,18 +12,23 @@ insert into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10); connection con1; create temporary table t3(f int); insert into t3 select * from t1 where f<6; +sleep 1; connection con2; create temporary table t3(f int); +sleep 1; connection con1; insert into t2 select count(*) from t3; +sleep 1; connection con2; insert into t3 select * from t1 where f>=4; +sleep 1; connection con1; drop temporary table t3; +sleep 1; connection con2; insert into t2 select count(*) from t3; |