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/null_key.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/null_key.result')
-rw-r--r-- | mysql-test/r/null_key.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/null_key.result b/mysql-test/r/null_key.result index db2f662eeac..78e28c75ab1 100644 --- a/mysql-test/r/null_key.result +++ b/mysql-test/r/null_key.result @@ -258,7 +258,7 @@ INSERT INTO t1 VALUES (1,NULL),(2,NULL),(3,1),(4,2),(5,NULL),(6,NULL),(7,3),(8,4 INSERT INTO t2 VALUES (1,NULL),(2,NULL),(3,1),(4,2),(5,NULL),(6,NULL),(7,3),(8,4),(9,NULL),(10,NULL); explain select id from t1 where uniq_id is null; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ref idx1 idx1 5 const 5 Using index condition +1 SIMPLE t1 ref idx1 idx1 5 const 5 Using where explain select id from t1 where uniq_id =1; id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 const idx1 idx1 5 const 1 |