diff options
author | unknown <timour@askmonty.org> | 2011-11-21 17:48:25 +0200 |
---|---|---|
committer | unknown <timour@askmonty.org> | 2011-11-21 17:48:25 +0200 |
commit | e9a6502f261d927719762dab11aac8b2af50ff34 (patch) | |
tree | 7cd903159f2c7042631825d3dec6ea808698d3be /mysql-test/r/group_by.result | |
parent | 0693f4d9168eeee399f9d636c9ba81981e484daf (diff) | |
parent | f0d9908fc3582cf08db7e0376f0e243b1e754ad5 (diff) | |
download | mariadb-git-e9a6502f261d927719762dab11aac8b2af50ff34.tar.gz |
Merge enabling materialization=on by default.
Diffstat (limited to 'mysql-test/r/group_by.result')
-rw-r--r-- | mysql-test/r/group_by.result | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/r/group_by.result b/mysql-test/r/group_by.result index 0572aa9e297..1f93171c09d 100644 --- a/mysql-test/r/group_by.result +++ b/mysql-test/r/group_by.result @@ -1543,7 +1543,8 @@ EXPLAIN SELECT 1 FROM t1 WHERE a IN (SELECT a FROM t1 USE INDEX (i2) IGNORE INDEX (i2)); id select_type table type possible_keys key key_len ref rows Extra 1 PRIMARY t1 index PRIMARY,i2 PRIMARY 4 NULL 144 Using index -1 PRIMARY t1 ALL NULL NULL NULL NULL 144 Using where; FirstMatch(t1) +1 PRIMARY <subquery2> eq_ref distinct_key distinct_key 4 func 1 +2 SUBQUERY t1 ALL NULL NULL NULL NULL 144 CREATE TABLE t2 (a INT, b INT, KEY(a)); INSERT INTO t2 VALUES (1, 1), (2, 2), (3,3), (4,4); EXPLAIN SELECT a, SUM(b) FROM t2 GROUP BY a LIMIT 2; |