diff options
author | Igor Babaev <igor@askmonty.org> | 2011-11-21 05:16:16 -0800 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2011-11-21 05:16:16 -0800 |
commit | af3d1da31d486cdda78fe2cbcd94781be35ef2a8 (patch) | |
tree | a802cd8373a7dae75dc5e224262efc3be941a04f /mysql-test/r/myisam.result | |
parent | 3c496ea9ad4e7ef289eee35f9775c58a0e5f82b8 (diff) | |
download | mariadb-git-af3d1da31d486cdda78fe2cbcd94781be35ef2a8.tar.gz |
Made the optimizer switch for index condition pushdown set to 'on' by default.
Diffstat (limited to 'mysql-test/r/myisam.result')
-rw-r--r-- | mysql-test/r/myisam.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/myisam.result b/mysql-test/r/myisam.result index e02c57ee8b9..9fa51eda142 100644 --- a/mysql-test/r/myisam.result +++ b/mysql-test/r/myisam.result @@ -392,7 +392,7 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 ALL a NULL NULL NULL 5 Using where explain select * from t1 force index (a) where a=0 or a=2; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 range a a 4 NULL 4 Using where +1 SIMPLE t1 range a a 4 NULL 4 Using index condition; Using where explain select * from t1 where c=1; id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 ref c,c_2 c 5 const 1 @@ -1254,7 +1254,7 @@ qq *a *a*a * explain select * from t1 where v='a'; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ref v,v_2 # 13 const # Using where +1 SIMPLE t1 ref v,v_2 # 13 const # Using index condition select v,count(*) from t1 group by v limit 10; v count(*) a 1 @@ -1430,7 +1430,7 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 ref v v 303 const # Using where; Using index explain select * from t1 where v='a'; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ref v v 303 const # Using where +1 SIMPLE t1 ref v v 303 const # Using index condition select v,count(*) from t1 group by v limit 10; v count(*) a 1 |