diff options
author | Igor Babaev <igor@askmonty.org> | 2011-07-12 23:47:35 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2011-07-12 23:47:35 -0700 |
commit | 5819dfcdf6144ff756495ba3e7cc066adb768dd4 (patch) | |
tree | 80f9eeb6bb863b54e2ae639258558ae290622a13 /mysql-test/r/func_gconcat.result | |
parent | 419c20f10aaf6ef9fa7cb600084fdeaac2b0ae5a (diff) | |
download | mariadb-git-5819dfcdf6144ff756495ba3e7cc066adb768dd4.tar.gz |
Fixed LP bug #809206.
The bitmap of used tables must be evaluated for the select list of every
materialized derived table / view and saved in a dedicated field.
This is also applied to materialized subqueries.
Diffstat (limited to 'mysql-test/r/func_gconcat.result')
-rw-r--r-- | mysql-test/r/func_gconcat.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/func_gconcat.result b/mysql-test/r/func_gconcat.result index a45701b5f9b..4af2a4c3a66 100644 --- a/mysql-test/r/func_gconcat.result +++ b/mysql-test/r/func_gconcat.result @@ -985,8 +985,8 @@ EXPLAIN EXTENDED SELECT 1 FROM id select_type table type possible_keys key key_len ref rows filtered Extra 1 PRIMARY t1 ALL NULL NULL NULL NULL 2 100.00 1 PRIMARY <derived2> ALL NULL NULL NULL NULL 4 100.00 Using join buffer (flat, BNL join) -2 DERIVED t1 ALL NULL NULL NULL NULL 2 100.00 Using temporary; Using filesort; Distinct -2 DERIVED td ALL NULL NULL NULL NULL 2 100.00 Distinct; Using join buffer (flat, BNL join) +2 DERIVED t1 ALL NULL NULL NULL NULL 2 100.00 Using temporary; Using filesort +2 DERIVED td ALL NULL NULL NULL NULL 2 100.00 Using join buffer (flat, BNL join) Warnings: Note 1003 select 1 AS `1` from (select distinct group_concat(`test`.`td`.`f1` separator ',') AS `GROUP_CONCAT(td.f1)` from `test`.`t1` join `test`.`t1` `td` group by `test`.`td`.`f1`) `d` join `test`.`t1` SELECT 1 FROM |