From: Date: April 23 2008 11:22am Subject: bk commit into 5.0 tree (gshchepa:1.2612) BUG#36139 List-Archive: http://lists.mysql.com/commits/45869 X-Bug: 36139 Message-Id: <20080423092423.4B30540DFBA@localhost.localdomain> Below is the list of changes that have just been committed into a local 5.0 repository of gshchepa. When gshchepa does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2008-04-23 14:22:49+05:00, gshchepa@stripped +2 -0 subselect.test, subselect.result: Post-commit minor cleanup of testcase (bug#36139). mysql-test/r/subselect.result@stripped, 2008-04-23 14:20:50+05:00, gshchepa@stripped +1 -1 Post-commit minor cleanup of testcase (bug#36139). mysql-test/t/subselect.test@stripped, 2008-04-23 14:22:04+05:00, gshchepa@stripped +1 -1 Post-commit minor cleanup of testcase (bug#36139). diff -Nrup a/mysql-test/r/subselect.result b/mysql-test/r/subselect.result --- a/mysql-test/r/subselect.result 2008-04-22 03:53:07 +05:00 +++ b/mysql-test/r/subselect.result 2008-04-23 14:20:50 +05:00 @@ -4380,5 +4380,5 @@ select t1.a from t1 where t1.a= (select b from t2 limit 1) and not t1.a= (select a from t2 limit 1) ; a -drop table t1; +drop table t1, t2; End of 5.0 tests. diff -Nrup a/mysql-test/t/subselect.test b/mysql-test/t/subselect.test --- a/mysql-test/t/subselect.test 2008-04-22 03:53:07 +05:00 +++ b/mysql-test/t/subselect.test 2008-04-23 14:22:04 +05:00 @@ -3269,7 +3269,7 @@ select t1.a from t1 where t1.a= (select b from t2 limit 1) and not t1.a= (select a from t2 limit 1) ; -drop table t1; +drop table t1, t2; --echo End of 5.0 tests.