diff options
Diffstat (limited to 'mysql-test/r/select.result')
-rw-r--r-- | mysql-test/r/select.result | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/r/select.result b/mysql-test/r/select.result index 49fea815b62..511714637ff 100644 --- a/mysql-test/r/select.result +++ b/mysql-test/r/select.result @@ -2258,20 +2258,20 @@ a 3 select * from (t1 as t2 left join t1 as t3 using (a)) right join t1 on t1.a>1; a a -NULL 1 1 2 -2 2 -3 2 1 3 +2 2 2 3 +3 2 3 3 +NULL 1 select * from t1 right join (t1 as t2 left join t1 as t3 using (a)) on t1.a>1; a a 2 1 -3 1 2 2 -3 2 2 3 +3 1 +3 2 3 3 select * from (t1 as t2 left join t1 as t3 using (a)) right outer join t1 using ( a ); a |