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/ps_1general.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/ps_1general.result')
-rw-r--r-- | mysql-test/r/ps_1general.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/ps_1general.result b/mysql-test/r/ps_1general.result index 8d578794d6d..924a0105367 100644 --- a/mysql-test/r/ps_1general.result +++ b/mysql-test/r/ps_1general.result @@ -465,9 +465,9 @@ def key 253 64 7 Y 0 31 8 def key_len 253 4096 1 Y 0 31 8 def ref 253 2048 0 Y 0 31 8 def rows 8 10 1 Y 32928 0 63 -def Extra 253 255 27 N 1 31 8 +def Extra 253 255 37 N 1 31 8 id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 range PRIMARY PRIMARY 4 NULL 3 Using where; Using filesort +1 SIMPLE t1 range PRIMARY PRIMARY 4 NULL 3 Using index condition; Using filesort drop table if exists t2; create table t2 (id smallint, name varchar(20)) ; prepare stmt1 from ' insert into t2 values(?, ?) ' ; |