subselect.test, subselect.result:

Post-commit minor cleanup of testcase (bug#36139).


mysql-test/r/subselect.result:
  Post-commit minor cleanup of testcase (bug#36139).
mysql-test/t/subselect.test:
  Post-commit minor cleanup of testcase (bug#36139).
This commit is contained in:
unknown 2008-04-23 14:22:49 +05:00
parent c2d1ac6e2c
commit 415112a940
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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.