diff options
author | unknown <bell@sanja.is.com.ua> | 2003-08-01 19:04:35 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-08-01 19:04:35 +0300 |
commit | e56fcb4221b85930f118ea43962972352777bdfd (patch) | |
tree | 311ef70892273d6c5332ca8696c08ed6950cbf92 /mysql-test | |
parent | 875a26d50a7685def420be8712068f8e880adf7e (diff) | |
download | mariadb-git-e56fcb4221b85930f118ea43962972352777bdfd.tar.gz |
merge fix
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/t/subselect.test | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mysql-test/t/subselect.test b/mysql-test/t/subselect.test index c6cc82e5f92..1d7da94d455 100644 --- a/mysql-test/t/subselect.test +++ b/mysql-test/t/subselect.test @@ -820,8 +820,6 @@ insert into t3 values (3,3), (2,2), (1,1); select a,(select count(distinct t1.b) as sum from t1,t2 where t1.a=t2.a and t2.b > 0 and t1.a <= t3.b group by t1.a order by sum limit 1) from t3; drop table t1,t2,t3; -drop table t1; - # # aggregate functions in HAVING test # |