Merge moonbone.local:/work/allany-4.1-mysql

into  moonbone.local:/work/16302-bug-4.1-opt-mysql
This commit is contained in:
unknown 2006-07-11 17:48:33 +04:00
commit bf01313ccf
3 changed files with 30 additions and 1 deletions

View file

@ -2835,3 +2835,21 @@ a
4
DROP TABLE t1,t2,t3;
purge master logs before (select adddate(current_timestamp(), interval -4 day));
select 1 from dual where 1 < any (select 2);
1
1
select 1 from dual where 1 < all (select 2);
1
1
select 1 from dual where 2 > any (select 1);
1
1
select 1 from dual where 2 > all (select 1);
1
1
select 1 from dual where 1 < any (select 2 from dual);
1
1
select 1 from dual where 1 < all (select 2 from dual where 1!=1);
1
1