diff options
author | Igor Babaev <igor@askmonty.org> | 2011-07-21 14:23:08 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2011-07-21 14:23:08 -0700 |
commit | 63abf00a62313107884f0b304d2c53de73f4eacd (patch) | |
tree | 664adb16a62a9b6b72b52c786c9c98d021158243 /mysql-test/r/join_cache.result | |
parent | 99cce18955dfb43d7d69c7de704cb29f047f8da5 (diff) | |
download | mariadb-git-63abf00a62313107884f0b304d2c53de73f4eacd.tar.gz |
Made the optimizer switches 'derived_merge' and 'derived_with_keys'
off by default.
Diffstat (limited to 'mysql-test/r/join_cache.result')
-rw-r--r-- | mysql-test/r/join_cache.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/join_cache.result b/mysql-test/r/join_cache.result index 1dbefde79e8..b544772f383 100644 --- a/mysql-test/r/join_cache.result +++ b/mysql-test/r/join_cache.result @@ -4972,7 +4972,7 @@ DROP TABLE t1,t2; # Bug #802860: crash on join cache + derived + duplicate_weedout # SET SESSION optimizer_switch= -'semijoin=on,materialization=off,firstmatch=off,loosescan=off'; +'semijoin=on,materialization=off,firstmatch=off,loosescan=off,derived_with_keys=on'; CREATE TABLE t1 (a int) ; INSERT IGNORE INTO t1 VALUES (0), (1), (0); CREATE TABLE t2 (a int) ; |