diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2011-05-26 15:01:26 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2011-05-26 15:01:26 +0400 |
commit | aa551f1b9ecb1452dcf514c189f4be934e89dd74 (patch) | |
tree | 4bd49f8eb272a0cdd42abfa87a577ccd74432a6e /sql/sql_select.h | |
parent | f0038da8f6d9924ad734a880c339fa5cb2368c6b (diff) | |
download | mariadb-git-aa551f1b9ecb1452dcf514c189f4be934e89dd74.tar.gz |
Post-merge fixes part#2
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r-- | sql/sql_select.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h index 1ce2190497d..c19692a19a9 100644 --- a/sql/sql_select.h +++ b/sql/sql_select.h @@ -1138,12 +1138,13 @@ public: max_allowed_join_cache_level > JOIN_CACHE_HASHED_BIT; } bool choose_subquery_plan(table_map join_tables); - //void get_partial_join_cost(uint n_tables, - // double *read_time_arg, double *record_count_arg); void get_partial_cost_and_fanout(uint end_tab_idx, table_map filter_map, double *read_time_arg, double *record_count_arg); + void get_prefix_cost_and_fanout(uint n_tables, + double *read_time_arg, + double *record_count_arg); private: /** TRUE if the query contains an aggregate function but has no GROUP |