summaryrefslogtreecommitdiff
path: root/mysql-test/r/subselect3.result
diff options
context:
space:
mode:
authorIgor Babaev <igor@askmonty.org>2011-11-21 05:16:16 -0800
committerIgor Babaev <igor@askmonty.org>2011-11-21 05:16:16 -0800
commitaf3d1da31d486cdda78fe2cbcd94781be35ef2a8 (patch)
treea802cd8373a7dae75dc5e224262efc3be941a04f /mysql-test/r/subselect3.result
parent3c496ea9ad4e7ef289eee35f9775c58a0e5f82b8 (diff)
downloadmariadb-git-af3d1da31d486cdda78fe2cbcd94781be35ef2a8.tar.gz
Made the optimizer switch for index condition pushdown set to 'on' by default.
Diffstat (limited to 'mysql-test/r/subselect3.result')
-rw-r--r--mysql-test/r/subselect3.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/subselect3.result b/mysql-test/r/subselect3.result
index be922e7cbd4..8368385efd2 100644
--- a/mysql-test/r/subselect3.result
+++ b/mysql-test/r/subselect3.result
@@ -1136,7 +1136,7 @@ insert into t4 select a from t3;
explain select * from t3 where a in (select t1.kp1 from t1,t4 where kp1<20
and t4.pk=t1.c);
id select_type table type possible_keys key key_len ref rows Extra
-1 PRIMARY t1 range kp1 kp1 5 NULL 48 Using where; LooseScan
+1 PRIMARY t1 range kp1 kp1 5 NULL 48 Using index condition; Using where; LooseScan
1 PRIMARY t4 eq_ref PRIMARY PRIMARY 4 test.t1.c 1 Using index; FirstMatch(t1)
1 PRIMARY t3 ALL NULL NULL NULL NULL 100 Using where; Using join buffer (flat, BNL join)
drop table t1, t3, t4;