diff options
author | Igor Babaev <igor@askmonty.org> | 2016-09-04 20:11:58 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2016-09-04 20:11:58 -0700 |
commit | 3b40f78eded4e529bacf09c9c28d4749b9b66812 (patch) | |
tree | 9af7df3686f7e30eb4e9d881f79e5885551da9ca /mysql-test/r/distinct.result | |
parent | 102fc62990c4b133f9597c61293d93f91759cae2 (diff) | |
download | mariadb-git-3b40f78eded4e529bacf09c9c28d4749b9b66812.tar.gz |
Fixed a flaw in the implementation of condition push-down
for materialized views and derived tables: there were no
push-down if the view was defined as union of selects
without aggregation. Added test cases with such unions.
Adjusted result files after the merge of the code for mdev-9197.
Diffstat (limited to 'mysql-test/r/distinct.result')
-rw-r--r-- | mysql-test/r/distinct.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/distinct.result b/mysql-test/r/distinct.result index e2a7c462efd..6a67b5d0baf 100644 --- a/mysql-test/r/distinct.result +++ b/mysql-test/r/distinct.result @@ -918,7 +918,7 @@ id select_type table type possible_keys key key_len ref rows filtered Extra 1 PRIMARY t1 ALL NULL NULL NULL NULL 96 100.00 Using where; Using temporary 1 PRIMARY <derived2> ref key0 key0 5 test.t1.i1 9 100.00 Using where 1 PRIMARY t2 ALL NULL NULL NULL NULL 2 100.00 Using where; Using join buffer (flat, BNL join) -2 DERIVED t1 ALL NULL NULL NULL NULL 96 100.00 +2 DERIVED t1 ALL NULL NULL NULL NULL 96 100.00 Using where Warnings: Note 1003 select straight_join distinct `test`.`t1`.`id` AS `id` from `test`.`t1` join `test`.`v1` join `test`.`t2` where ((`test`.`t2`.`i` = `v1`.`id`) and (`v1`.`i1` = `test`.`t1`.`i1`) and (`v1`.`id` <> 3)) set join_buffer_size=1024; |