diff options
author | Igor Babaev <igor@askmonty.org> | 2011-11-04 05:39:45 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2011-11-04 05:39:45 -0700 |
commit | 928e94fb98b34e511d89c1ca38e35b42656c9313 (patch) | |
tree | 74863e1e60120f9bd64a67ecbe9308b930bef86d /mysql-test/r/myisam_mrr.result | |
parent | c1ebb566b36df00ad21a8b9d35ab6ad9de5e0b5b (diff) | |
download | mariadb-git-928e94fb98b34e511d89c1ca38e35b42656c9313.tar.gz |
Fixed LP bug #885168.
The call of the virtual function cancel_pushed_idx_cond in the code of
the function test_if_skip_sort_order was misplaced when backporting the
fix for bug 58816.
Diffstat (limited to 'mysql-test/r/myisam_mrr.result')
-rw-r--r-- | mysql-test/r/myisam_mrr.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/myisam_mrr.result b/mysql-test/r/myisam_mrr.result index bf513779dc0..f98504bbcda 100644 --- a/mysql-test/r/myisam_mrr.result +++ b/mysql-test/r/myisam_mrr.result @@ -350,7 +350,7 @@ GROUP BY t2.pk ); id select_type table type possible_keys key key_len ref rows filtered Extra 1 PRIMARY t1 system NULL NULL NULL NULL 1 100.00 -2 SUBQUERY t2 ref int_key int_key 5 const 1 100.00 Using where; Using filesort +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(1) 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; |