diff options
author | Igor Babaev <igor@askmonty.org> | 2011-05-25 16:01:56 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2011-05-25 16:01:56 -0700 |
commit | deb3b9a17498d101468fc12a633245fc74730133 (patch) | |
tree | 8596b662f6af5d5367c95dff770ed2daf7516b35 /mysql-test/r/myisam_mrr.result | |
parent | 7fc2d46a88aeb03da39439538e90fafc8cc76ad7 (diff) | |
download | mariadb-git-deb3b9a17498d101468fc12a633245fc74730133.tar.gz |
Downported InnoDB support of Index Condition Pushdown from MySQL-5.6 code line.
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 d0f0d12c28e..c7bc3c6229d 100644 --- a/mysql-test/r/myisam_mrr.result +++ b/mysql-test/r/myisam_mrr.result @@ -363,7 +363,7 @@ update t1 set b=repeat(char(65+a), 20) where a < 25; This must show range + using index condition: explain select * from t1 where a < 10 and b = repeat(char(65+a), 20); id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 range a a 5 NULL 19 Using where +1 SIMPLE t1 range a a 5 NULL 19 Using index condition; Using where select * from t1 where a < 10 and b = repeat(char(65+a), 20); a b filler 0 AAAAAAAAAAAAAAAAAAAA filler |