diff options
Diffstat (limited to 'mysql-test/r/subselect.result')
-rw-r--r-- | mysql-test/r/subselect.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/subselect.result b/mysql-test/r/subselect.result index 177baa84e0f..0f7d5bb5d43 100644 --- a/mysql-test/r/subselect.result +++ b/mysql-test/r/subselect.result @@ -149,10 +149,10 @@ select (select a from t1 where t1.a=t2.b), a from t2; (select a from t1 where t1.a=t2.b) a NULL 1 NULL 2 -select (select a from t1), a from t2; -(select a from t1) a -2 1 -2 2 +select (select a from t1), a, (select 1 union select 2 limit 1) from t2; +(select a from t1) a (select 1 union select 2 limit 1) +2 1 1 +2 2 1 select (select a from t3), a from t2; (select a from t3) a NULL 1 |