summaryrefslogtreecommitdiff
path: root/mysql-test/r/group_min_max.result
diff options
context:
space:
mode:
authorIgor Babaev <igor@askmonty.org>2010-10-30 06:07:45 -0700
committerIgor Babaev <igor@askmonty.org>2010-10-30 06:07:45 -0700
commit0b72fd88a11213f64dc146e7ceab942aeb8c40d0 (patch)
treebdaeaf77b5e5350619c8f7652b5cc7d241fedb7e /mysql-test/r/group_min_max.result
parentd48a8b60345c5b5f95c2ce590f7032a7c9f87c4b (diff)
parent05092b7323b2cf435ef43f38120438e62f6eb880 (diff)
downloadmariadb-git-0b72fd88a11213f64dc146e7ceab942aeb8c40d0.tar.gz
Merge.
Diffstat (limited to 'mysql-test/r/group_min_max.result')
-rw-r--r--mysql-test/r/group_min_max.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/group_min_max.result b/mysql-test/r/group_min_max.result
index 85569ad9d35..974521ec120 100644
--- a/mysql-test/r/group_min_max.result
+++ b/mysql-test/r/group_min_max.result
@@ -2267,7 +2267,7 @@ ON t1_outer1.a = (SELECT max(b) FROM t1 GROUP BY a HAVING a < 2)
AND t1_outer1.b = t1_outer2.b;
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t1_outer1 ref a a 5 const 1 Using where; Using index
-1 PRIMARY t1_outer2 index NULL a 10 NULL 15 Using where; Using index; Using join buffer
+1 PRIMARY t1_outer2 index NULL a 10 NULL 15 Using where; Using index; Using join buffer (flat, BNL join)
2 SUBQUERY t1 range NULL a 5 NULL 8 Using index for group-by
EXPLAIN SELECT (SELECT (SELECT max(b) FROM t1 GROUP BY a HAVING a < 2) x
FROM t1 AS t1_outer) x2 FROM t1 AS t1_outer2;