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/subselect_no_opts.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/subselect_no_opts.result')
-rw-r--r-- | mysql-test/r/subselect_no_opts.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/subselect_no_opts.result b/mysql-test/r/subselect_no_opts.result index 47f6d3a0ed4..f9df463f6aa 100644 --- a/mysql-test/r/subselect_no_opts.result +++ b/mysql-test/r/subselect_no_opts.result @@ -1325,7 +1325,7 @@ id select_type table type possible_keys key key_len ref rows filtered Extra 1 PRIMARY NULL NULL NULL NULL NULL NULL NULL NULL No tables used 2 SUBQUERY NULL NULL NULL NULL NULL NULL NULL NULL Impossible WHERE noticed after reading const tables Warnings: -Note 1003 select <in_optimizer>(0,<exists>(select 1 from `test`.`t1` `a` where (0 = 1))) AS `0 IN (SELECT 1 FROM t1 a)` +Note 1003 select <in_optimizer>(0,<exists>(select 1 from `test`.`t1` `a` where 0)) AS `0 IN (SELECT 1 FROM t1 a)` INSERT INTO t1 (pseudo) VALUES ('test1'); SELECT 0 IN (SELECT 1 FROM t1 a); 0 IN (SELECT 1 FROM t1 a) |