summaryrefslogtreecommitdiff
path: root/mysql-test/r/myisam_mrr.result
diff options
context:
space:
mode:
authorunknown <timour@askmonty.org>2011-02-03 17:00:28 +0200
committerunknown <timour@askmonty.org>2011-02-03 17:00:28 +0200
commit648e604615dfe852abbd467dbd8e6c3c9476dd07 (patch)
tree28d2f105add43131537c5109a1797a459c80ca8a /mysql-test/r/myisam_mrr.result
parentfd6a079993cdc7cebbc533784455bf3c78f34b2a (diff)
downloadmariadb-git-648e604615dfe852abbd467dbd8e6c3c9476dd07.tar.gz
MWL#89
Adjusted test cases in accordance with the implementation.
Diffstat (limited to 'mysql-test/r/myisam_mrr.result')
-rw-r--r--mysql-test/r/myisam_mrr.result6
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/myisam_mrr.result b/mysql-test/r/myisam_mrr.result
index e1eeb4e1a62..48476fef696 100644
--- a/mysql-test/r/myisam_mrr.result
+++ b/mysql-test/r/myisam_mrr.result
@@ -347,10 +347,10 @@ WHERE t2.int_key IS NULL
GROUP BY t2.pk
);
id select_type table type possible_keys key key_len ref rows filtered Extra
-1 PRIMARY NULL NULL NULL NULL NULL NULL NULL NULL Impossible WHERE
-2 SUBQUERY t2 ref int_key int_key 5 1 100.00 Using index condition; Using where; Using filesort
+1 PRIMARY NULL NULL NULL NULL NULL NULL NULL NULL Select tables optimized away
+2 SUBQUERY t2 ref int_key int_key 5 const 1 100.00 Using index condition; Using where; Using filesort
Warnings:
-Note 1003 select min(`test`.`t1`.`pk`) AS `MIN(t1.pk)` from `test`.`t1` where 0
+Note 1003 select min(`test`.`t1`.`pk`) AS `MIN(t1.pk)` from `test`.`t1` where exists(select `test`.`t2`.`pk` from `test`.`t2` where isnull(`test`.`t2`.`int_key`) group by `test`.`t2`.`pk`)
DROP TABLE t1, t2;
#
# BUG#42048 Discrepancy between MyISAM and Maria's ICP implementation