Commit fdeaedb4 authored by Igor Babaev's avatar Igor Babaev

Fixed LP bug #891052.

Some optimizer switches were missing in the help lists of mysqld.
parent 42221aba
...@@ -495,6 +495,8 @@ static const char *optimizer_switch_str="index_merge=on,index_merge_union=on," ...@@ -495,6 +495,8 @@ static const char *optimizer_switch_str="index_merge=on,index_merge_union=on,"
"mrr=off," "mrr=off,"
"mrr_cost_based=off," "mrr_cost_based=off,"
"mrr_sort_keys=off," "mrr_sort_keys=off,"
"outer_join_with_cache,"
"semijoin_with_cache,"
"join_cache_incremental=on," "join_cache_incremental=on,"
"join_cache_hashed=on," "join_cache_hashed=on,"
"join_cache_bka=on," "join_cache_bka=on,"
...@@ -7589,7 +7591,8 @@ each time the SQL thread starts.", ...@@ -7589,7 +7591,8 @@ each time the SQL thread starts.",
"derived_merge, derived_with_keys, " "derived_merge, derived_with_keys, "
"firstmatch, loosescan, materialization, in_to_exists, " "firstmatch, loosescan, materialization, in_to_exists, "
"semijoin, partial_match_rowid_merge, partial_match_table_scan, " "semijoin, partial_match_rowid_merge, partial_match_table_scan, "
"subquery_cache, outer_join_with_cache, semijoin_with_cache, " "subquery_cache, mrr, mrr_cost_based, mrr_sort_keys, "
"outer_join_with_cache, semijoin_with_cache, "
"join_cache_incremental, join_cache_hashed, join_cache_bka, " "join_cache_incremental, join_cache_hashed, join_cache_bka, "
"optimize_join_buffer_size" "optimize_join_buffer_size"
", table_elimination" ", table_elimination"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment