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/myisam_mrr.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/myisam_mrr.result')
-rw-r--r-- | mysql-test/r/myisam_mrr.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/myisam_mrr.result b/mysql-test/r/myisam_mrr.result index 38e1841dd41..65ad29ecdde 100644 --- a/mysql-test/r/myisam_mrr.result +++ b/mysql-test/r/myisam_mrr.result @@ -1,4 +1,6 @@ drop table if exists t0, t1, t2, t3; +set @myisam_mrr_tmp=@@optimizer_switch; +set optimizer_switch='mrr=on,mrr_sort_keys=on,index_condition_pushdown=on'; set @mrr_buffer_size_save= @@mrr_buffer_size; set mrr_buffer_size=79; Warnings: @@ -507,4 +509,5 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE table3 ref PRIMARY,col_varchar_key col_varchar_key 3 test.table2.col_varchar_key 3 Using where; Using join buffer (flat, BKA join); Key-ordered Rowid-ordered scan set join_cache_level= @save_join_cache_level; set join_buffer_size= @save_join_buffer_size; +set optimizer_switch= @myisam_mrr_tmp; drop table t1; |