diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2011-07-08 18:46:47 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2011-07-08 18:46:47 +0400 |
commit | 1492de8563ac6032481fe69189f4f1f1e14fe73b (patch) | |
tree | 297c4f43de79a2afc07279f9897965b8c7fd0ef9 /mysql-test/r/join_nested.result | |
parent | 4128ec48522534732d16a74cda006dc794748042 (diff) | |
download | mariadb-git-1492de8563ac6032481fe69189f4f1f1e14fe73b.tar.gz |
Set the default to be mrr=off,mrr_sort_keys=off:
- Set the default
- Adjust the testcases so that 'new' tests are run with optimizations turned on.
- Pull out relevant tests from "irrelevant" tests and run them with optimizations on.
- Run range.test and innodb.test with both mrr=on and mrr=off
Diffstat (limited to 'mysql-test/r/join_nested.result')
-rw-r--r-- | mysql-test/r/join_nested.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/join_nested.result b/mysql-test/r/join_nested.result index 3dc6a6338cb..0b1fdf8d0bb 100644 --- a/mysql-test/r/join_nested.result +++ b/mysql-test/r/join_nested.result @@ -1447,12 +1447,12 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t2 ALL NULL NULL NULL NULL X 1 SIMPLE t3 ref a a 5 test.t2.b X Using where 1 SIMPLE t5 ref a a 5 test.t3.b X -1 SIMPLE t4 ref a a 5 test.t3.b X Using index condition +1 SIMPLE t4 ref a a 5 test.t3.b X Using where explain select * from (t4 join t6 on t6.a=t4.b) right join t3 on t4.a=t3.b join t2 left join (t5 join t7 on t7.a=t5.b) on t5.a=t2.b where t3.a<=>t2.b; id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t2 ALL NULL NULL NULL NULL X -1 SIMPLE t3 ref a a 5 test.t2.b X Using index condition +1 SIMPLE t3 ref a a 5 test.t2.b X Using where 1 SIMPLE t4 ref a a 5 test.t3.b X Using where 1 SIMPLE t6 ref a a 5 test.t4.b X 1 SIMPLE t5 ref a a 5 test.t2.b X Using where |