diff options
author | Matthias Leich <Matthias.Leich@sun.com> | 2009-05-15 12:15:56 +0200 |
---|---|---|
committer | Matthias Leich <Matthias.Leich@sun.com> | 2009-05-15 12:15:56 +0200 |
commit | 21f878e7243346efa9e8ae41400528a8d5cb76cb (patch) | |
tree | 4d992c0688078d328a4150d979caaf623fd345ef /mysql-test/t/derived.test | |
parent | 1b7424b9b70438b8844ba34a4eb3169146660664 (diff) | |
download | mariadb-git-21f878e7243346efa9e8ae41400528a8d5cb76cb.tar.gz |
Fix for Bug#42308 Several server tests do not pass MTR's --check option
Details:
Most tests mentioned within the bug report were already fixed.
The test modified here failed in stability (high parallel load) tests.
Details:
1. Take care that disconnects are finished before the test terminates.
2. Correct wrong handling of send/reap in events_stress which caused
random garbled output
3. Minor beautifying of script code
Diffstat (limited to 'mysql-test/t/derived.test')
-rw-r--r-- | mysql-test/t/derived.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/derived.test b/mysql-test/t/derived.test index 4e79fac584f..bf5cd4aa8d8 100644 --- a/mysql-test/t/derived.test +++ b/mysql-test/t/derived.test @@ -273,7 +273,9 @@ select t2.* from ((select * from t1) as A inner join t2 on A.ID = t2.FID); select t2.* from (select * from t1) as A inner join t2 on A.ID = t2.FID; drop table t1, t2; +connection con1; disconnect con1; +--source include/wait_until_disconnected.inc connection default; drop user mysqltest_1; |