diff options
author | Igor Babaev <igor@askmonty.org> | 2011-06-01 20:49:37 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2011-06-01 20:49:37 -0700 |
commit | 6dab04bda02cab4510f4c594c0625e0801a5a7b7 (patch) | |
tree | cf6f8865cb56ad38f44206cc90934b40d69c60a5 /mysql-test/r/myisam_mrr.result | |
parent | 8bf69ab7bf71ee8e1cbed98d20b04ebf1e5567c1 (diff) | |
parent | 9a1e54658ebd073978f36bd535754768641f70a5 (diff) | |
download | mariadb-git-6dab04bda02cab4510f4c594c0625e0801a5a7b7.tar.gz |
Merge.
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 38e1841dd41..25e9c00c6b4 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 |