summaryrefslogtreecommitdiff
path: root/mysql-test/r/explain.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/explain.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/explain.result')
-rw-r--r--mysql-test/r/explain.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/explain.result b/mysql-test/r/explain.result
index a871e1ae761..ab48ccdcf15 100644
--- a/mysql-test/r/explain.result
+++ b/mysql-test/r/explain.result
@@ -13,7 +13,7 @@ id str
3 foo
explain select * from t1 where str is null;
id select_type table type possible_keys key key_len ref rows Extra
-1 SIMPLE t1 ref str str 11 const 1 Using where
+1 SIMPLE t1 ref str str 11 const 1 Using index condition
explain select * from t1 where str="foo";
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 const str str 11 const 1