Commit b9688830 authored by Sergey Petrunya's avatar Sergey Petrunya

Subquery optimizations:

- Better comments
- Use more appropriate return types for functions
- Provide handling where it was missing.
parent b2c57ced
...@@ -217,13 +217,13 @@ bool Item_subselect::fix_fields(THD *thd_param, Item **ref) ...@@ -217,13 +217,13 @@ bool Item_subselect::fix_fields(THD *thd_param, Item **ref)
if (!(*ref)->fixed) if (!(*ref)->fixed)
res= (*ref)->fix_fields(thd, ref); res= (*ref)->fix_fields(thd, ref);
goto end; goto end;
//psergey-merge: done_first_fix_fields= FALSE;
} }
// Is it one field subselect? // Is it one field subselect?
if (engine->cols() > max_columns) if (engine->cols() > max_columns)
{ {
my_error(ER_OPERAND_COLUMNS, MYF(0), 1); my_error(ER_OPERAND_COLUMNS, MYF(0), 1);
//psergey-merge: done_first_fix_fields= FALSE;
goto end; goto end;
} }
fix_length_and_dec(); fix_length_and_dec();
...@@ -241,6 +241,7 @@ bool Item_subselect::fix_fields(THD *thd_param, Item **ref) ...@@ -241,6 +241,7 @@ bool Item_subselect::fix_fields(THD *thd_param, Item **ref)
end: end:
done_first_fix_fields= FALSE; done_first_fix_fields= FALSE;
inside_first_fix_fields= FALSE;
thd->where= save_where; thd->where= save_where;
return res; return res;
} }
......
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
#include <my_bit.h> #include <my_bit.h>
// Our own:
static static
bool subquery_types_allow_materialization(Item_in_subselect *in_subs); bool subquery_types_allow_materialization(Item_in_subselect *in_subs);
static bool replace_where_subcondition(JOIN *join, Item **expr, static bool replace_where_subcondition(JOIN *join, Item **expr,
...@@ -52,17 +51,22 @@ static void remove_subq_pushed_predicates(JOIN *join, Item **where); ...@@ -52,17 +51,22 @@ static void remove_subq_pushed_predicates(JOIN *join, Item **where);
/* /*
Check if we need JOIN::prepare()-phase subquery rewrites and if yes, do them Check if we need JOIN::prepare()-phase subquery rewrites and if yes, do them
SYNOPSIS
check_and_do_in_subquery_rewrites()
join Subquery's join
DESCRIPTION DESCRIPTION
Check if we need to do Check if we need to do
- subquery->semi-join rewrite - subquery -> mergeable semi-join rewrite
- if the subquery can be handled with materialization - if the subquery can be handled with materialization
- 'substitution' rewrite for table-less subqueries like "(select 1)" - 'substitution' rewrite for table-less subqueries like "(select 1)"
- IN->EXISTS rewrite
and mark appropriately and, depending on the rewrite, either do it, or record it to be done at a
later phase.
RETURN RETURN
0 - OK 0 - OK
-1 - Some sort of query error Other - Some sort of query error
*/ */
int check_and_do_in_subquery_rewrites(JOIN *join) int check_and_do_in_subquery_rewrites(JOIN *join)
...@@ -387,7 +391,7 @@ static bool make_in_exists_conversion(THD *thd, JOIN *join, Item_in_subselect *i ...@@ -387,7 +391,7 @@ static bool make_in_exists_conversion(THD *thd, JOIN *join, Item_in_subselect *i
TODO: what about delaying that rewrite until here? TODO: what about delaying that rewrite until here?
*/ */
if (!item->convert_to_semi_join) if (!item->convert_to_semi_join)
{ { //psergey-jtbm-fix: this branch is always taken??
replace_me= item->optimizer; replace_me= item->optimizer;
} }
...@@ -1019,6 +1023,20 @@ static bool convert_subq_to_sj(JOIN *parent_join, Item_in_subselect *subq_pred) ...@@ -1019,6 +1023,20 @@ static bool convert_subq_to_sj(JOIN *parent_join, Item_in_subselect *subq_pred)
} }
/*
Convert subquery predicate into non-mergeable semi-join nest.
TODO:
why does this do IN-EXISTS conversion? Can't we unify it with mergeable
semi-joins? currently, convert_subq_to_sj() cannot fail to convert (unless
fatal errors)
RETURN
FALSE - Ok
TRUE - Fatal error
*/
static bool convert_subq_to_jtbm(JOIN *parent_join, static bool convert_subq_to_jtbm(JOIN *parent_join,
Item_in_subselect *subq_pred, Item_in_subselect *subq_pred,
bool *remove_item) bool *remove_item)
...@@ -1058,24 +1076,15 @@ static bool convert_subq_to_jtbm(JOIN *parent_join, ...@@ -1058,24 +1076,15 @@ static bool convert_subq_to_jtbm(JOIN *parent_join,
/* jtbm->next_leaf= jtbm->next_local= jtbm->next_global == NULL*/ /* jtbm->next_leaf= jtbm->next_local= jtbm->next_global == NULL*/
emb_join_list->push_back(jtbm); emb_join_list->push_back(jtbm);
/* Inject ourselves into next-leaf list */
/*
JTBM: Inject us into next_leaf and lext_local chains..
so that make_join_statistics et al find us.
*/
/* /*
Reconnect the next_leaf chain. Inject the jtbm table into TABLE_LIST::next_leaf list, so that
TODO: Do we have to put subquery's tables at the end of the chain? make_join_statistics() and co. can find it.
Inserting them at the beginning would be a bit faster.
NOTE: We actually insert them at the front! That's because the order is
reversed in this list.
*/ */
for (tl= parent_lex->leaf_tables; tl->next_leaf; tl= tl->next_leaf) ; for (tl= parent_lex->leaf_tables; tl->next_leaf; tl= tl->next_leaf) ;
tl->next_leaf= jtbm; tl->next_leaf= jtbm;
/* /*
Same as above for next_local chain Same as above for TABLE_LIST::next_local chain
(a theory: a next_local chain always starts with ::leaf_tables (a theory: a next_local chain always starts with ::leaf_tables
because view's tables are inserted after the view) because view's tables are inserted after the view)
*/ */
...@@ -1540,7 +1549,7 @@ static uint get_tmp_table_rec_length(List<Item> &items) ...@@ -1540,7 +1549,7 @@ static uint get_tmp_table_rec_length(List<Item> &items)
return len; return len;
} }
//psergey-todo: is the below a kind of table elimination??
/* /*
Check if table's KEYUSE elements have an eq_ref(outer_tables) candidate Check if table's KEYUSE elements have an eq_ref(outer_tables) candidate
...@@ -1557,6 +1566,8 @@ static uint get_tmp_table_rec_length(List<Item> &items) ...@@ -1557,6 +1566,8 @@ static uint get_tmp_table_rec_length(List<Item> &items)
Check again if it is feasible to factor common parts with constant table Check again if it is feasible to factor common parts with constant table
search search
Also check if it's feasible to factor common parts with table elimination
RETURN RETURN
TRUE - There exists an eq_ref(outer-tables) candidate TRUE - There exists an eq_ref(outer-tables) candidate
FALSE - Otherwise FALSE - Otherwise
...@@ -3744,7 +3755,7 @@ static void remove_subq_pushed_predicates(JOIN *join, Item **where) ...@@ -3744,7 +3755,7 @@ static void remove_subq_pushed_predicates(JOIN *join, Item **where)
} }
int do_jtbm_materialization_if_needed(JOIN_TAB *tab) bool do_jtbm_materialization_if_needed(JOIN_TAB *tab)
{ {
Item_in_subselect *in_subs; Item_in_subselect *in_subs;
if (tab->table->pos_in_table_list && if (tab->table->pos_in_table_list &&
...@@ -3761,9 +3772,9 @@ int do_jtbm_materialization_if_needed(JOIN_TAB *tab) ...@@ -3761,9 +3772,9 @@ int do_jtbm_materialization_if_needed(JOIN_TAB *tab)
hash_sj_engine->is_materialized= TRUE; hash_sj_engine->is_materialized= TRUE;
if (hash_sj_engine->materialize_join->error || tab->join->thd->is_fatal_error) if (hash_sj_engine->materialize_join->error || tab->join->thd->is_fatal_error)
return 1; return TRUE;
} }
} }
return 0; return FALSE;
} }
...@@ -370,5 +370,5 @@ int rewrite_to_index_subquery_engine(JOIN *join); ...@@ -370,5 +370,5 @@ int rewrite_to_index_subquery_engine(JOIN *join);
void get_temptable_params(Item_in_subselect *item, ha_rows *out_rows, void get_temptable_params(Item_in_subselect *item, ha_rows *out_rows,
ha_rows *scan_time); ha_rows *scan_time);
int do_jtbm_materialization_if_needed(JOIN_TAB *tab); bool do_jtbm_materialization_if_needed(JOIN_TAB *tab);
...@@ -33,8 +33,6 @@ ...@@ -33,8 +33,6 @@
#define NO_MORE_RECORDS_IN_BUFFER (uint)(-1) #define NO_MORE_RECORDS_IN_BUFFER (uint)(-1)
int do_jtbm_materialization_if_needed(JOIN_TAB *tab);
/***************************************************************************** /*****************************************************************************
* Join cache module * Join cache module
******************************************************************************/ ******************************************************************************/
...@@ -1780,8 +1778,11 @@ enum_nested_loop_state JOIN_CACHE_BNL::join_matching_records(bool skip_last) ...@@ -1780,8 +1778,11 @@ enum_nested_loop_state JOIN_CACHE_BNL::join_matching_records(bool skip_last)
/* Start retrieving all records of the joined table */ /* Start retrieving all records of the joined table */
//jtbm-todo: error handling! if (do_jtbm_materialization_if_needed(join_tab))
do_jtbm_materialization_if_needed(join_tab); {
rc= NESTED_LOOP_ERROR;
goto finish;
}
if ((error= join_init_read_record(join_tab))) if ((error= join_init_read_record(join_tab)))
{ {
......
...@@ -12858,8 +12858,9 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records) ...@@ -12858,8 +12858,9 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records)
} }
join->thd->row_count= 0; join->thd->row_count= 0;
//jtbm-todo: error handling! if (do_jtbm_materialization_if_needed(join_tab))
do_jtbm_materialization_if_needed(join_tab); DBUG_RETURN(NESTED_LOOP_ERROR);
error= (*join_tab->read_first_record)(join_tab); error= (*join_tab->read_first_record)(join_tab);
if (join_tab->keep_current_rowid) if (join_tab->keep_current_rowid)
......
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