Commit 5a9e6261 authored by Varun Gupta's avatar Varun Gupta

Extend the join prefix to ensure all tables in the duplicate range either are...

Extend the join prefix to ensure all tables in the duplicate range either are inside or outside the sort nest
parent 92faf41d
...@@ -2919,3 +2919,76 @@ a b a b ...@@ -2919,3 +2919,76 @@ a b a b
1 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0
DROP TABLE t0,t1,t2,t3; DROP TABLE t0,t1,t2,t3;
#
# Ensure all tables in Duplicate weedout range are either inside
# or outside the sort nest
#
CREATE TABLE t0(a int);
CREATE TABLE t1 (a int, b int, c int, key(b));
CREATE TABLE t2 (a int, b int, c int);
CREATE TABLE t3 (a int, b int, c int, key(a));
CREATE TABLE t4 (a int, b int, c int, key(a));
INSERT INTO t0 SELECT seq-1 FROM seq_1_to_10;
INSERT INTO t1 SELECT seq-1, seq-1, seq-1 FROM seq_1_to_100;
INSERT INTO t2 SELECT a,a,a FROM t0;
INSERT INTO t2 (a,b,c) values (9,9,9);
INSERT INTO t3 SELECT a,a,a FROM t0;
INSERT INTO t4 SELECT a,a,a FROM t0;
ANALYZE TABLE t0 PERSISTENT FOR ALL;
ANALYZE TABLE t1 PERSISTENT FOR ALL;
ANALYZE TABLE t2 PERSISTENT FOR ALL;
ANALYZE TABLE t3 PERSISTENT FOR ALL;
ANALYZE TABLE t4 PERSISTENT FOR ALL;
set optimizer_switch='cost_based_order_by_limit=on';
EXPLAIN SELECT t1.a, t2.a, t1.b,t2.b
FROM t1, t2
WHERE t1.a=t2.a AND
t1.b IN (SELECT t3.b FROM t3,t4
WHERE t3.c < 10 AND t4.a=t2.b)
ORDER BY t1.b DESC
LIMIT 5;
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t3 ALL NULL NULL NULL NULL 10 Using where; Start temporary; Using temporary; Using filesort
1 PRIMARY t1 ref b b 5 test.t3.b 1
1 PRIMARY t2 ALL NULL NULL NULL NULL 11 Using where; Using join buffer (flat, BNL join)
1 PRIMARY t4 ref a a 5 test.t2.b 1 Using index; End temporary
SELECT t1.a, t2.a, t1.b,t2.b
FROM t1, t2
WHERE t1.a=t2.a AND
t1.b IN (SELECT t3.b FROM t3,t4
WHERE t3.c < 10 AND t4.a=t2.b)
ORDER BY t1.b DESC
LIMIT 5;
a a b b
9 9 9 9
9 9 9 9
8 8 8 8
7 7 7 7
6 6 6 6
set optimizer_switch='cost_based_order_by_limit=off';
EXPLAIN SELECT t1.a, t2.a, t1.b,t2.b
FROM t1, t2
WHERE t1.a=t2.a AND
t1.b IN (SELECT t3.b FROM t3,t4
WHERE t3.c < 10 AND t4.a=t2.b)
ORDER BY t1.b DESC
LIMIT 5;
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t3 ALL NULL NULL NULL NULL 10 Using where; Start temporary; Using temporary; Using filesort
1 PRIMARY t1 ref b b 5 test.t3.b 1
1 PRIMARY t2 ALL NULL NULL NULL NULL 11 Using where; Using join buffer (flat, BNL join)
1 PRIMARY t4 ref a a 5 test.t2.b 1 Using index; End temporary
SELECT t1.a, t2.a, t1.b,t2.b
FROM t1, t2
WHERE t1.a=t2.a AND
t1.b IN (SELECT t3.b FROM t3,t4
WHERE t3.c < 10 AND t4.a=t2.b)
ORDER BY t1.b DESC
LIMIT 5;
a a b b
9 9 9 9
9 9 9 9
8 8 8 8
7 7 7 7
6 6 6 6
drop table t0,t1,t2,t3,t4;
...@@ -1177,3 +1177,49 @@ eval EXPLAIN FORMAT=JSON $query; ...@@ -1177,3 +1177,49 @@ eval EXPLAIN FORMAT=JSON $query;
eval $query; eval $query;
DROP TABLE t0,t1,t2,t3; DROP TABLE t0,t1,t2,t3;
--echo #
--echo # Ensure all tables in Duplicate weedout range are either inside
--echo # or outside the sort nest
--echo #
CREATE TABLE t0(a int);
CREATE TABLE t1 (a int, b int, c int, key(b));
CREATE TABLE t2 (a int, b int, c int);
CREATE TABLE t3 (a int, b int, c int, key(a));
CREATE TABLE t4 (a int, b int, c int, key(a));
INSERT INTO t0 SELECT seq-1 FROM seq_1_to_10;
INSERT INTO t1 SELECT seq-1, seq-1, seq-1 FROM seq_1_to_100;
INSERT INTO t2 SELECT a,a,a FROM t0;
INSERT INTO t2 (a,b,c) values (9,9,9);
INSERT INTO t3 SELECT a,a,a FROM t0;
INSERT INTO t4 SELECT a,a,a FROM t0;
--disable_result_log
ANALYZE TABLE t0 PERSISTENT FOR ALL;
ANALYZE TABLE t1 PERSISTENT FOR ALL;
ANALYZE TABLE t2 PERSISTENT FOR ALL;
ANALYZE TABLE t3 PERSISTENT FOR ALL;
ANALYZE TABLE t4 PERSISTENT FOR ALL;
--enable_result_log
let $query= SELECT t1.a, t2.a, t1.b,t2.b
FROM t1, t2
WHERE t1.a=t2.a AND
t1.b IN (SELECT t3.b FROM t3,t4
WHERE t3.c < 10 AND t4.a=t2.b)
ORDER BY t1.b DESC
LIMIT 5;
set optimizer_switch='cost_based_order_by_limit=on';
eval EXPLAIN $query;
eval $query;
set optimizer_switch='cost_based_order_by_limit=off';
eval EXPLAIN $query;
eval $query;
drop table t0,t1,t2,t3,t4;
...@@ -3541,6 +3541,13 @@ bool Duplicate_weedout_picker::check_qep(JOIN *join, ...@@ -3541,6 +3541,13 @@ bool Duplicate_weedout_picker::check_qep(JOIN *join,
} }
bool Duplicate_weedout_picker::sort_nest_allowed_for_sj(table_map prefix_tables)
{
if (!dupsweedout_tables || !(~prefix_tables & dupsweedout_tables))
return FALSE;
return TRUE;
}
/* /*
Remove the last join tab from from join->cur_sj_inner_tables bitmap Remove the last join tab from from join->cur_sj_inner_tables bitmap
we assume remaining_tables doesnt contain @tab. we assume remaining_tables doesnt contain @tab.
......
...@@ -9645,8 +9645,6 @@ best_extension_by_limited_search(JOIN *join, ...@@ -9645,8 +9645,6 @@ best_extension_by_limited_search(JOIN *join,
JOIN_TAB *s; JOIN_TAB *s;
double best_record_count= DBL_MAX; double best_record_count= DBL_MAX;
double best_read_time= DBL_MAX; double best_read_time= DBL_MAX;
bool disable_jbuf= (join->thd->variables.join_cache_level == 0) ||
nest_created;
bool save_prefix_resolves_ordering= join->prefix_resolves_ordering; bool save_prefix_resolves_ordering= join->prefix_resolves_ordering;
if (nest_created && !limit_applied_to_nest) if (nest_created && !limit_applied_to_nest)
...@@ -9661,9 +9659,17 @@ best_extension_by_limited_search(JOIN *join, ...@@ -9661,9 +9659,17 @@ best_extension_by_limited_search(JOIN *join,
apply_limit.add("original_record_count", original_record_count); apply_limit.add("original_record_count", original_record_count);
apply_limit.add("record_count_after_limit_applied", record_count); apply_limit.add("record_count_after_limit_applied", record_count);
} }
} }
/*
Join buffering should be not considered in 2 cases
1) if join_cache_level = 0 that is join buffering is disabled
2) if the limit was pushed to a prefix of the join that can resolve the
ORDER BY clause
*/
bool disable_jbuf= (join->thd->variables.join_cache_level == 0) ||
limit_applied_to_nest;
DBUG_EXECUTE("opt", print_plan(join, idx, record_count, read_time, read_time, DBUG_EXECUTE("opt", print_plan(join, idx, record_count, read_time, read_time,
"part_plan");); "part_plan"););
...@@ -9806,15 +9812,10 @@ best_extension_by_limited_search(JOIN *join, ...@@ -9806,15 +9812,10 @@ best_extension_by_limited_search(JOIN *join,
s->check_if_index_satisfies_ordering(index_used)) s->check_if_index_satisfies_ordering(index_used))
limit_applied_to_nest= TRUE; limit_applied_to_nest= TRUE;
/*
TODO varun:
1) get an optimizer switch to enable or disable the sort
nest instead of a system variable
*/
if (!nest_created && if (!nest_created &&
(join->prefix_resolves_ordering || (join->prefix_resolves_ordering ||
join->consider_adding_sort_nest(sort_nest_tables | join->consider_adding_sort_nest(sort_nest_tables |
real_table_bit))) real_table_bit, idx)))
{ {
// SORT_NEST branch // SORT_NEST branch
join->positions[idx].sort_nest_operation_here= TRUE; join->positions[idx].sort_nest_operation_here= TRUE;
...@@ -9840,6 +9841,8 @@ best_extension_by_limited_search(JOIN *join, ...@@ -9840,6 +9841,8 @@ best_extension_by_limited_search(JOIN *join,
sort_nest_tables | real_table_bit, sort_nest_tables | real_table_bit,
TRUE, limit_applied_to_nest)) TRUE, limit_applied_to_nest))
DBUG_RETURN(TRUE); DBUG_RETURN(TRUE);
if (!(join->is_index_with_ordering_allowed(idx) &&
s->check_if_index_satisfies_ordering(index_used)))
join->positions[idx].sort_nest_operation_here= FALSE; join->positions[idx].sort_nest_operation_here= FALSE;
trace_rest.end(); trace_rest.end();
} }
...@@ -9859,8 +9862,11 @@ best_extension_by_limited_search(JOIN *join, ...@@ -9859,8 +9862,11 @@ best_extension_by_limited_search(JOIN *join,
DBUG_RETURN(TRUE); DBUG_RETURN(TRUE);
trace_rest.end(); trace_rest.end();
if (!idx) if (idx == join->const_tables)
{
limit_applied_to_nest= FALSE; limit_applied_to_nest= FALSE;
join->positions[idx].sort_nest_operation_here= FALSE;
}
swap_variables(JOIN_TAB*, join->best_ref[idx], *pos); swap_variables(JOIN_TAB*, join->best_ref[idx], *pos);
} }
else else
......
...@@ -738,6 +738,7 @@ class Semi_join_strategy_picker ...@@ -738,6 +738,7 @@ class Semi_join_strategy_picker
struct st_position *loose_scan_pos) = 0; struct st_position *loose_scan_pos) = 0;
virtual void mark_used() = 0; virtual void mark_used() = 0;
virtual bool sort_nest_allowed_for_sj(table_map prefix_tables) = 0;
virtual ~Semi_join_strategy_picker() {} virtual ~Semi_join_strategy_picker() {}
}; };
...@@ -779,6 +780,7 @@ class Duplicate_weedout_picker : public Semi_join_strategy_picker ...@@ -779,6 +780,7 @@ class Duplicate_weedout_picker : public Semi_join_strategy_picker
struct st_position *loose_scan_pos); struct st_position *loose_scan_pos);
void mark_used() { is_used= TRUE; } void mark_used() { is_used= TRUE; }
bool sort_nest_allowed_for_sj(table_map remaining_tables);
friend void fix_semijoin_strategies_for_picked_join_order(JOIN *join); friend void fix_semijoin_strategies_for_picked_join_order(JOIN *join);
}; };
...@@ -824,6 +826,7 @@ class Firstmatch_picker : public Semi_join_strategy_picker ...@@ -824,6 +826,7 @@ class Firstmatch_picker : public Semi_join_strategy_picker
struct st_position *loose_scan_pos); struct st_position *loose_scan_pos);
void mark_used() { is_used= TRUE; } void mark_used() { is_used= TRUE; }
bool sort_nest_allowed_for_sj(table_map remaining_tables) { return FALSE; }
friend void fix_semijoin_strategies_for_picked_join_order(JOIN *join); friend void fix_semijoin_strategies_for_picked_join_order(JOIN *join);
}; };
...@@ -866,7 +869,7 @@ class LooseScan_picker : public Semi_join_strategy_picker ...@@ -866,7 +869,7 @@ class LooseScan_picker : public Semi_join_strategy_picker
sj_strategy_enum *strategy, sj_strategy_enum *strategy,
struct st_position *loose_scan_pos); struct st_position *loose_scan_pos);
void mark_used() { is_used= TRUE; } void mark_used() { is_used= TRUE; }
bool sort_nest_allowed_for_sj(table_map remaining_tables) { return FALSE; }
friend class Loose_scan_opt; friend class Loose_scan_opt;
friend void best_access_path(JOIN *join, friend void best_access_path(JOIN *join,
JOIN_TAB *s, JOIN_TAB *s,
...@@ -916,6 +919,7 @@ class Sj_materialization_picker : public Semi_join_strategy_picker ...@@ -916,6 +919,7 @@ class Sj_materialization_picker : public Semi_join_strategy_picker
sj_strategy_enum *strategy, sj_strategy_enum *strategy,
struct st_position *loose_scan_pos); struct st_position *loose_scan_pos);
void mark_used() { is_used= TRUE; } void mark_used() { is_used= TRUE; }
bool sort_nest_allowed_for_sj(table_map remaining_tables) { return FALSE; }
friend void fix_semijoin_strategies_for_picked_join_order(JOIN *join); friend void fix_semijoin_strategies_for_picked_join_order(JOIN *join);
}; };
...@@ -1956,7 +1960,8 @@ class JOIN :public Sql_alloc ...@@ -1956,7 +1960,8 @@ class JOIN :public Sql_alloc
void setup_range_scan(JOIN_TAB *tab, uint idx, double records); void setup_range_scan(JOIN_TAB *tab, uint idx, double records);
bool is_join_buffering_allowed(JOIN_TAB *tab); bool is_join_buffering_allowed(JOIN_TAB *tab);
bool check_join_prefix_resolves_ordering(table_map previous_tables); bool check_join_prefix_resolves_ordering(table_map previous_tables);
bool consider_adding_sort_nest(table_map previous_tables); bool consider_adding_sort_nest(table_map previous_tables, uint idx);
bool extend_prefix_to_ensure_duplicate_removal(table_map prefix_tables, uint idx);
void set_fraction_output_for_nest(); void set_fraction_output_for_nest();
double sort_nest_oper_cost(double join_record_count, uint idx, double sort_nest_oper_cost(double join_record_count, uint idx,
ulong rec_len); ulong rec_len);
......
...@@ -1446,18 +1446,44 @@ bool JOIN::sort_nest_allowed() ...@@ -1446,18 +1446,44 @@ bool JOIN::sort_nest_allowed()
FALSE otherwise FALSE otherwise
*/ */
bool JOIN::consider_adding_sort_nest(table_map prefix_tables) bool JOIN::consider_adding_sort_nest(table_map prefix_tables, uint idx)
{ {
if (!sort_nest_possible || // (1) if (!sort_nest_possible || // (1)
get_cardinality_estimate || // (2) get_cardinality_estimate || // (2)
cur_embedding_map || // (3) cur_embedding_map || // (3)
cur_sj_inner_tables) // (4) cur_sj_inner_tables || // (4)
extend_prefix_to_ensure_duplicate_removal(prefix_tables, idx))
return FALSE; return FALSE;
return check_join_prefix_resolves_ordering(prefix_tables); // (5) return check_join_prefix_resolves_ordering(prefix_tables); // (5)
} }
bool
JOIN::extend_prefix_to_ensure_duplicate_removal(table_map prefix_tables, uint idx)
{
if (!select_lex->have_merged_subqueries)
return FALSE;
POSITION *pos= positions + idx;
Semi_join_strategy_picker *pickers[]=
{
&pos->firstmatch_picker,
&pos->loosescan_picker,
&pos->sjmat_picker,
&pos->dups_weedout_picker,
NULL,
};
Semi_join_strategy_picker **strategy;
for (strategy= pickers; *strategy != NULL; strategy++)
{
if ((*strategy)->sort_nest_allowed_for_sj(prefix_tables))
return TRUE;
}
return FALSE;
}
/* /*
@brief @brief
Check if indexes on a table are allowed to resolve the ORDER BY clause Check if indexes on a table are allowed to resolve the ORDER BY clause
......
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