summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Babaev <igor@askmonty.org>2011-11-21 07:00:14 -0800
committerIgor Babaev <igor@askmonty.org>2011-11-21 07:00:14 -0800
commit0693f4d9168eeee399f9d636c9ba81981e484daf (patch)
tree4e63c99b0c9d1bf09f9119c3fc17d72c5cd9e3b5
parentaf3d1da31d486cdda78fe2cbcd94781be35ef2a8 (diff)
downloadmariadb-git-0693f4d9168eeee399f9d636c9ba81981e484daf.tar.gz
Corrected the patch that made the optimizer switch for index condition pushdown
set to 'on' by default.
-rw-r--r--sql/mysqld.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc
index 3cd2b27d11a..f37d8e3e728 100644
--- a/sql/mysqld.cc
+++ b/sql/mysqld.cc
@@ -481,7 +481,7 @@ static const char *optimizer_switch_str="index_merge=on,index_merge_union=on,"
"index_merge_sort_union=on,"
"index_merge_intersection=on,"
"index_merge_sort_intersection=off,"
- "index_condition_pushdown=off,"
+ "index_condition_pushdown=on,"
"derived_merge=off,"
"derived_with_keys=off,"
"firstmatch=on,"