diff options
author | Igor Babaev <igor@askmonty.org> | 2013-08-16 22:01:47 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2013-08-16 22:01:47 -0700 |
commit | 25c152018dceae35bf0d45de46a33a214048128c (patch) | |
tree | d9dfc7c5fff1c89abb2870b5a1086dedf24678c0 /mysql-test/r/join_outer.result | |
parent | 752d5d022dd4e6f76338b4b57696d4eef29e1f6b (diff) | |
download | mariadb-git-25c152018dceae35bf0d45de46a33a214048128c.tar.gz |
Fixed bug mdev-4418.
After single row substitutions there might appear new equalities.
They should be properly propagated to all AND/OR levels the WHERE
condition. It's done now with an additional call of remove_eq_conds().
Diffstat (limited to 'mysql-test/r/join_outer.result')
-rw-r--r-- | mysql-test/r/join_outer.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/join_outer.result b/mysql-test/r/join_outer.result index 723b2a88382..684bfb3836e 100644 --- a/mysql-test/r/join_outer.result +++ b/mysql-test/r/join_outer.result @@ -1649,7 +1649,7 @@ id select_type table type possible_keys key key_len ref rows filtered Extra 1 PRIMARY t2 ALL NULL NULL NULL NULL 1 100.00 Using where 2 SUBQUERY t3 ALL NULL NULL NULL NULL 2 100.00 Using where Warnings: -Note 1003 select `test`.`t2`.`a` AS `a` from `test`.`t1` left join `test`.`t2` on(<in_optimizer>(6,<exists>(select `test`.`t3`.`a` from `test`.`t3` where (6 = `test`.`t3`.`a`)))) where 1 +Note 1003 select `test`.`t2`.`a` AS `a` from `test`.`t1` left join `test`.`t2` on(<in_optimizer>(6,<exists>(select `test`.`t3`.`a` from `test`.`t3` where (6 = `test`.`t3`.`a`)))) DROP TABLE t1,t2,t3; # # LP bug #817384 Wrong result with outer join + subquery in ON |