Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
e87440b7
Commit
e87440b7
authored
May 03, 2023
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '10.4' into 10.5
parents
69932b6e
ed3e6f66
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
1161 additions
and
45 deletions
+1161
-45
mysql-test/main/derived_split_innodb.result
mysql-test/main/derived_split_innodb.result
+517
-0
mysql-test/main/derived_split_innodb.test
mysql-test/main/derived_split_innodb.test
+213
-0
mysql-test/main/opt_trace.result
mysql-test/main/opt_trace.result
+114
-0
mysql-test/main/opt_trace.test
mysql-test/main/opt_trace.test
+70
-0
sql/opt_split.cc
sql/opt_split.cc
+185
-37
sql/sql_select.cc
sql/sql_select.cc
+34
-5
sql/sql_select.h
sql/sql_select.h
+28
-3
No files found.
mysql-test/main/derived_split_innodb.result
View file @
e87440b7
This diff is collapsed.
Click to expand it.
mysql-test/main/derived_split_innodb.test
View file @
e87440b7
...
@@ -229,3 +229,216 @@ where t3.b > 15;
...
@@ -229,3 +229,216 @@ where t3.b > 15;
drop
table
t3
,
t4
;
drop
table
t3
,
t4
;
--
echo
# End of 10.3 tests
--
echo
# End of 10.3 tests
--
source
include
/
have_sequence
.
inc
--
echo
#
--
echo
# MDEV-26301: Split optimization refills temporary table too many times
--
echo
#
# 5 values
create
table
t1
(
a
int
,
b
int
);
insert
into
t1
select
seq
,
seq
from
seq_1_to_5
;
# 5 value groups of size 2 each
create
table
t2
(
a
int
,
b
int
,
key
(
a
));
insert
into
t2
select
A
.
seq
,
B
.
seq
from
seq_1_to_25
A
,
seq_1_to_2
B
;
# 5 value groups of size 3 each
create
table
t3
(
a
int
,
b
int
,
key
(
a
));
insert
into
t3
select
A
.
seq
,
B
.
seq
from
seq_1_to_5
A
,
seq_1_to_3
B
;
analyze
table
t1
,
t2
,
t3
persistent
for
all
;
explain
select
*
from
(
t1
left
join
t2
on
t2
.
a
=
t1
.
b
)
left
join
t3
on
t3
.
a
=
t1
.
b
;
# Now, create tables for Groups.
create
table
t10
(
grp_id
int
,
col1
int
,
key
(
grp_id
)
);
# 100 groups of 100 values each
insert
into
t10
select
A
.
seq
,
B
.
seq
from
seq_1_to_100
A
,
seq_1_to_100
B
;
# and X10 multiplier
create
table
t11
(
col1
int
,
col2
int
);
insert
into
t11
select
A
.
seq
,
A
.
seq
from
seq_1_to_10
A
;
analyze
table
t10
,
t11
persistent
for
all
;
let
$q1
=
select
*
from
(
(
t1
left
join
t2
on
t2
.
a
=
t1
.
b
)
left
join
t3
on
t3
.
a
=
t1
.
b
)
left
join
(
select
grp_id
,
count
(
*
)
from
t10
left
join
t11
on
t11
.
col1
=
t10
.
col1
group
by
grp_id
)
T
on
T
.
grp_id
=
t1
.
b
;
eval
explain
$q1
;
--
echo
# The important part in the below output is:
--
echo
# "lateral": 1,
--
echo
# "query_block": {
--
echo
# "select_id": 2,
--
echo
# "r_loops": 5, <-- must be 5, not 30.
--
source
include
/
analyze
-
format
.
inc
eval
analyze
format
=
json
$q1
;
create
table
t21
(
pk
int
primary
key
);
insert
into
t21
values
(
1
),(
2
),(
3
);
create
table
t22
(
pk
int
primary
key
);
insert
into
t22
values
(
1
),(
2
),(
3
);
# Same as above but throw in a couple of const tables.
explain
select
*
from
t21
,
t22
,
(
(
t1
left
join
t2
on
t2
.
a
=
t1
.
b
)
left
join
t3
on
t3
.
a
=
t1
.
b
)
left
join
(
select
grp_id
,
count
(
*
)
from
t10
left
join
t11
on
t11
.
col1
=
t10
.
col1
group
by
grp_id
)
T
on
T
.
grp_id
=
t1
.
b
where
t21
.
pk
=
1
and
t22
.
pk
=
2
;
explain
select
*
from
t21
,
(
(
t1
left
join
t2
on
t2
.
a
=
t1
.
b
)
left
join
t3
on
t3
.
a
=
t1
.
b
)
left
join
(
select
grp_id
,
count
(
*
)
from
t22
join
t10
left
join
t11
on
t11
.
col1
=
t10
.
col1
where
t22
.
pk
=
1
group
by
grp_id
)
T
on
T
.
grp_id
=
t1
.
b
where
t21
.
pk
=
1
;
# And also add a non-const table
create
table
t5
(
pk
int
primary
key
);
insert
into
t5
select
seq
from
seq_1_to_1000
;
explain
select
*
from
t21
,
(
(((
t1
join
t5
on
t5
.
pk
=
t1
.
b
))
left
join
t2
on
t2
.
a
=
t1
.
b
)
left
join
t3
on
t3
.
a
=
t1
.
b
)
left
join
(
select
grp_id
,
count
(
*
)
from
t22
join
t10
left
join
t11
on
t11
.
col1
=
t10
.
col1
where
t22
.
pk
=
1
group
by
grp_id
)
T
on
T
.
grp_id
=
t1
.
b
where
t21
.
pk
=
1
;
drop
table
t1
,
t2
,
t3
,
t5
,
t10
,
t11
,
t21
,
t22
;
# 5 values
create
table
t1
(
a
int
,
b
int
);
insert
into
t1
select
seq
,
seq
from
seq_1_to_5
;
# 5 value groups of size 2 each
create
table
t2
(
a
int
,
b
int
,
key
(
a
));
insert
into
t2
select
A
.
seq
,
B
.
seq
from
seq_1_to_25
A
,
seq_1_to_2
B
;
# 5 value groups of size 3 each
create
table
t3
(
a
int
,
b
int
,
key
(
a
));
insert
into
t3
select
A
.
seq
,
B
.
seq
from
seq_1_to_5
A
,
seq_1_to_3
B
;
analyze
table
t1
,
t2
,
t3
persistent
for
all
;
create
table
t10
(
grp_id
int
,
col1
int
,
key
(
grp_id
)
);
# 100 groups of 100 values each
insert
into
t10
select
A
.
seq
,
B
.
seq
from
seq_1_to_100
A
,
seq_1_to_100
B
;
# and X10 multiplier
create
table
t11
(
col1
int
,
col2
int
);
insert
into
t11
select
A
.
seq
,
A
.
seq
from
seq_1_to_10
A
;
analyze
table
t10
,
t11
persistent
for
all
;
let
$q
=
select
*
from
(
(
t1
left
join
t2
on
t2
.
a
=
t1
.
b
)
left
join
t3
on
t3
.
a
=
t1
.
b
)
left
join
(
select
grp_id
,
count
(
*
)
from
t10
left
join
t11
on
t11
.
col1
=
t10
.
col1
group
by
grp_id
)
dt
on
dt
.
grp_id
=
t1
.
b
;
eval
explain
$q
;
eval
$q
;
set
join_cache_level
=
4
;
eval
explain
$q
;
eval
$q
;
set
join_cache_level
=
default
;
drop
index
a
on
t2
;
drop
index
a
on
t3
;
eval
explain
$q
;
eval
$q
;
drop
table
t1
,
t2
,
t3
;
drop
table
t10
,
t11
;
--
echo
# End of 10.4 tests
mysql-test/main/opt_trace.result
View file @
e87440b7
...
@@ -449,6 +449,11 @@ select * from v2 {
...
@@ -449,6 +449,11 @@ select * from v2 {
}
}
]
]
},
},
{
"check_split_materialized": {
"not_applicable": "no candidate field can be accessed through ref"
}
},
{
{
"best_join_order": ["t1"]
"best_join_order": ["t1"]
},
},
...
@@ -772,6 +777,11 @@ explain select * from v1 {
...
@@ -772,6 +777,11 @@ explain select * from v1 {
}
}
]
]
},
},
{
"check_split_materialized": {
"not_applicable": "group list has no candidates"
}
},
{
{
"best_join_order": ["t1"]
"best_join_order": ["t1"]
},
},
...
@@ -8825,6 +8835,110 @@ SET optimizer_trace=DEFAULT;
...
@@ -8825,6 +8835,110 @@ SET optimizer_trace=DEFAULT;
DROP VIEW v;
DROP VIEW v;
DROP TABLE t;
DROP TABLE t;
#
#
# MDEV-26301: Split optimization improvements: Optimizer Trace coverage
#
create table t1(a int, b int);
insert into t1 select seq,seq from seq_1_to_5;
create table t2(a int, b int, key(a));
insert into t2
select A.seq,B.seq from seq_1_to_25 A, seq_1_to_2 B;
create table t3(a int, b int, key(a));
insert into t3
select A.seq,B.seq from seq_1_to_5 A, seq_1_to_3 B;
analyze table t1,t2,t3 persistent for all;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze status OK
test.t2 analyze status Engine-independent statistics collected
test.t2 analyze status Table is already up to date
test.t3 analyze status Engine-independent statistics collected
test.t3 analyze status Table is already up to date
create table t10 (
grp_id int,
col1 int,
key(grp_id)
);
insert into t10
select
A.seq,
B.seq
from
seq_1_to_100 A,
seq_1_to_100 B;
create table t11 (
col1 int,
col2 int
);
insert into t11
select A.seq, A.seq from seq_1_to_10 A;
analyze table t10,t11 persistent for all;
Table Op Msg_type Msg_text
test.t10 analyze status Engine-independent statistics collected
test.t10 analyze status Table is already up to date
test.t11 analyze status Engine-independent statistics collected
test.t11 analyze status OK
set optimizer_trace=1;
explain
select * from
(
(t1 left join t2 on t2.a=t1.b)
left join t3 on t3.a=t1.b
) left join (select grp_id, count(*)
from t10 left join t11 on t11.col1=t10.col1
group by grp_id) T on T.grp_id=t1.b;
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t1 ALL NULL NULL NULL NULL 5
1 PRIMARY t2 ref a a 5 test.t1.b 2 Using where
1 PRIMARY t3 ref a a 5 test.t1.b 3 Using where
1 PRIMARY <derived2> ref key0 key0 5 test.t1.b 10 Using where
2 LATERAL DERIVED t10 ref grp_id grp_id 5 test.t1.b 100
2 LATERAL DERIVED t11 ALL NULL NULL NULL NULL 10 Using where; Using join buffer (flat, BNL join)
select json_detailed(json_extract(trace, '$**.check_split_materialized')) as JS
from information_schema.optimizer_trace;
JS
[
{
"split_candidates":
["t10.grp_id"]
}
]
select
json_detailed(
json_remove(
json_extract(trace, '$**.choose_best_splitting')
, '$[0].split_plan_search[0]'
)
) as JS
from information_schema.optimizer_trace;
JS
[
{
"considered_keys":
[
{
"table_name": "t10",
"index": "grp_id",
"rec_per_key": 100,
"param_tables": 1
}
],
"refills": 5,
"spl_pd_boundary": 2,
"split_plan_search":
[],
"lead_table": "t10",
"index": "grp_id",
"parts": 1,
"split_sel": 0.001,
"cost": 2535.968504,
"records": 100,
"refills": 5,
"chosen": true
}
]
drop table t1,t2,t3,t10,t11;
set optimizer_trace=DEFAULT;
#
# End of 10.4 tests
# End of 10.4 tests
#
#
set optimizer_trace='enabled=on';
set optimizer_trace='enabled=on';
...
...
mysql-test/main/opt_trace.test
View file @
e87440b7
...
@@ -696,6 +696,76 @@ SET optimizer_trace=DEFAULT;
...
@@ -696,6 +696,76 @@ SET optimizer_trace=DEFAULT;
DROP
VIEW
v
;
DROP
VIEW
v
;
DROP
TABLE
t
;
DROP
TABLE
t
;
--
echo
#
--
echo
# MDEV-26301: Split optimization improvements: Optimizer Trace coverage
--
echo
#
# 5 values
create
table
t1
(
a
int
,
b
int
);
insert
into
t1
select
seq
,
seq
from
seq_1_to_5
;
# 5 value groups of size 2 each
create
table
t2
(
a
int
,
b
int
,
key
(
a
));
insert
into
t2
select
A
.
seq
,
B
.
seq
from
seq_1_to_25
A
,
seq_1_to_2
B
;
# 5 value groups of size 3 each
create
table
t3
(
a
int
,
b
int
,
key
(
a
));
insert
into
t3
select
A
.
seq
,
B
.
seq
from
seq_1_to_5
A
,
seq_1_to_3
B
;
analyze
table
t1
,
t2
,
t3
persistent
for
all
;
create
table
t10
(
grp_id
int
,
col1
int
,
key
(
grp_id
)
);
# 100 groups of 100 values each
insert
into
t10
select
A
.
seq
,
B
.
seq
from
seq_1_to_100
A
,
seq_1_to_100
B
;
# and X10 multiplier
create
table
t11
(
col1
int
,
col2
int
);
insert
into
t11
select
A
.
seq
,
A
.
seq
from
seq_1_to_10
A
;
analyze
table
t10
,
t11
persistent
for
all
;
set
optimizer_trace
=
1
;
explain
select
*
from
(
(
t1
left
join
t2
on
t2
.
a
=
t1
.
b
)
left
join
t3
on
t3
.
a
=
t1
.
b
)
left
join
(
select
grp_id
,
count
(
*
)
from
t10
left
join
t11
on
t11
.
col1
=
t10
.
col1
group
by
grp_id
)
T
on
T
.
grp_id
=
t1
.
b
;
select
json_detailed
(
json_extract
(
trace
,
'$**.check_split_materialized'
))
as
JS
from
information_schema
.
optimizer_trace
;
select
json_detailed
(
json_remove
(
json_extract
(
trace
,
'$**.choose_best_splitting'
)
,
'$[0].split_plan_search[0]'
)
)
as
JS
from
information_schema
.
optimizer_trace
;
drop
table
t1
,
t2
,
t3
,
t10
,
t11
;
set
optimizer_trace
=
DEFAULT
;
--
echo
#
--
echo
#
--
echo
# End of 10.4 tests
--
echo
# End of 10.4 tests
--
echo
#
--
echo
#
...
...
sql/opt_split.cc
View file @
e87440b7
This diff is collapsed.
Click to expand it.
sql/sql_select.cc
View file @
e87440b7
...
@@ -7344,6 +7344,7 @@ void set_position(JOIN *join,uint idx,JOIN_TAB *table,KEYUSE *key)
...
@@ -7344,6 +7344,7 @@ void set_position(JOIN *join,uint idx,JOIN_TAB *table,KEYUSE *key)
join->positions[idx].records_read=1.0; /* This is a const table */
join->positions[idx].records_read=1.0; /* This is a const table */
join->positions[idx].cond_selectivity= 1.0;
join->positions[idx].cond_selectivity= 1.0;
join->positions[idx].ref_depend_map= 0;
join->positions[idx].ref_depend_map= 0;
join->positions[idx].partial_join_cardinality= 1;
// join->positions[idx].loosescan_key= MAX_KEY; /* Not a LooseScan */
// join->positions[idx].loosescan_key= MAX_KEY; /* Not a LooseScan */
join->positions[idx].sj_strategy= SJ_OPT_NONE;
join->positions[idx].sj_strategy= SJ_OPT_NONE;
...
@@ -7361,6 +7362,7 @@ void set_position(JOIN *join,uint idx,JOIN_TAB *table,KEYUSE *key)
...
@@ -7361,6 +7362,7 @@ void set_position(JOIN *join,uint idx,JOIN_TAB *table,KEYUSE *key)
}
}
join->best_ref[idx]=table;
join->best_ref[idx]=table;
join->positions[idx].spl_plan= 0;
join->positions[idx].spl_plan= 0;
join->positions[idx].spl_pd_boundary= 0;
}
}
...
@@ -7533,6 +7535,7 @@ best_access_path(JOIN *join,
...
@@ -7533,6 +7535,7 @@ best_access_path(JOIN *join,
MY_BITMAP *eq_join_set= &s->table->eq_join_set;
MY_BITMAP *eq_join_set= &s->table->eq_join_set;
KEYUSE *hj_start_key= 0;
KEYUSE *hj_start_key= 0;
SplM_plan_info *spl_plan= 0;
SplM_plan_info *spl_plan= 0;
table_map spl_pd_boundary= 0;
Range_rowid_filter_cost_info *filter= 0;
Range_rowid_filter_cost_info *filter= 0;
const char* cause= NULL;
const char* cause= NULL;
enum join_type best_type= JT_UNKNOWN, type= JT_UNKNOWN;
enum join_type best_type= JT_UNKNOWN, type= JT_UNKNOWN;
...
@@ -7543,15 +7546,17 @@ best_access_path(JOIN *join,
...
@@ -7543,15 +7546,17 @@ best_access_path(JOIN *join,
DBUG_ENTER("best_access_path");
DBUG_ENTER("best_access_path");
Json_writer_object trace_wrapper(thd, "best_access_path");
Json_writer_object trace_wrapper(thd, "best_access_path");
Json_writer_array trace_paths(thd, "considered_access_paths");
bitmap_clear_all(eq_join_set);
bitmap_clear_all(eq_join_set);
loose_scan_opt.init(join, s, remaining_tables);
loose_scan_opt.init(join, s, remaining_tables);
if (s->table->is_splittable())
if (s->table->is_splittable())
spl_plan= s->choose_best_splitting(record_count, remaining_tables);
spl_plan= s->choose_best_splitting(idx,
remaining_tables,
&spl_pd_boundary);
Json_writer_array trace_paths(thd, "considered_access_paths");
if (s->keyuse)
if (s->keyuse)
{ /* Use key if possible */
{ /* Use key if possible */
KEYUSE *keyuse;
KEYUSE *keyuse;
...
@@ -8347,8 +8352,9 @@ best_access_path(JOIN *join,
...
@@ -8347,8 +8352,9 @@ best_access_path(JOIN *join,
best_filter= filter;
best_filter= filter;
/* range/index_merge/ALL/index access method are "independent", so: */
/* range/index_merge/ALL/index access method are "independent", so: */
best_ref_depends_map= 0;
best_ref_depends_map= 0;
best_uses_jbuf= MY_TEST(!disable_jbuf && !((s->table->map &
best_uses_jbuf= MY_TEST(!disable_jbuf &&
join->outer_join)));
(join->allowed_outer_join_with_cache ||
!(s->table->map & join->outer_join)));
spl_plan= 0;
spl_plan= 0;
best_type= type;
best_type= type;
}
}
...
@@ -8370,6 +8376,7 @@ best_access_path(JOIN *join,
...
@@ -8370,6 +8376,7 @@ best_access_path(JOIN *join,
pos->loosescan_picker.loosescan_key= MAX_KEY;
pos->loosescan_picker.loosescan_key= MAX_KEY;
pos->use_join_buffer= best_uses_jbuf;
pos->use_join_buffer= best_uses_jbuf;
pos->spl_plan= spl_plan;
pos->spl_plan= spl_plan;
pos->spl_pd_boundary= !spl_plan ? 0 : spl_pd_boundary;
pos->range_rowid_filter_info= best_filter;
pos->range_rowid_filter_info= best_filter;
loose_scan_opt.save_to_position(s, loose_scan_pos);
loose_scan_opt.save_to_position(s, loose_scan_pos);
...
@@ -8899,6 +8906,9 @@ optimize_straight_join(JOIN *join, table_map join_tables)
...
@@ -8899,6 +8906,9 @@ optimize_straight_join(JOIN *join, table_map join_tables)
pushdown_cond_selectivity= table_cond_selectivity(join, idx, s,
pushdown_cond_selectivity= table_cond_selectivity(join, idx, s,
join_tables);
join_tables);
position->cond_selectivity= pushdown_cond_selectivity;
position->cond_selectivity= pushdown_cond_selectivity;
double partial_join_cardinality= record_count *
pushdown_cond_selectivity;
join->positions[idx].partial_join_cardinality= partial_join_cardinality;
++idx;
++idx;
}
}
...
@@ -9939,6 +9949,8 @@ best_extension_by_limited_search(JOIN *join,
...
@@ -9939,6 +9949,8 @@ best_extension_by_limited_search(JOIN *join,
double partial_join_cardinality= current_record_count *
double partial_join_cardinality= current_record_count *
pushdown_cond_selectivity;
pushdown_cond_selectivity;
join->positions[idx].partial_join_cardinality= partial_join_cardinality;
if ( (search_depth > 1) && (remaining_tables & ~real_table_bit) & allowed_tables )
if ( (search_depth > 1) && (remaining_tables & ~real_table_bit) & allowed_tables )
{ /* Recursively expand the current partial plan */
{ /* Recursively expand the current partial plan */
swap_variables(JOIN_TAB*, join->best_ref[idx], *pos);
swap_variables(JOIN_TAB*, join->best_ref[idx], *pos);
...
@@ -12975,6 +12987,9 @@ uint check_join_cache_usage(JOIN_TAB *tab,
...
@@ -12975,6 +12987,9 @@ uint check_join_cache_usage(JOIN_TAB *tab,
join->return_tab= 0;
join->return_tab= 0;
if (tab->no_forced_join_cache)
return 0;
/*
/*
Don't use join cache if @@join_cache_level==0 or this table is the first
Don't use join cache if @@join_cache_level==0 or this table is the first
one join suborder (either at top level or inside a bush)
one join suborder (either at top level or inside a bush)
...
@@ -13936,7 +13951,8 @@ bool JOIN_TAB::preread_init()
...
@@ -13936,7 +13951,8 @@ bool JOIN_TAB::preread_init()
DBUG_RETURN(TRUE);
DBUG_RETURN(TRUE);
if (!(derived->get_unit()->uncacheable & UNCACHEABLE_DEPENDENT) ||
if (!(derived->get_unit()->uncacheable & UNCACHEABLE_DEPENDENT) ||
derived->is_nonrecursive_derived_with_rec_ref())
derived->is_nonrecursive_derived_with_rec_ref() ||
is_split_derived)
preread_init_done= TRUE;
preread_init_done= TRUE;
if (select && select->quick)
if (select && select->quick)
select->quick->replace_handler(table->file);
select->quick->replace_handler(table->file);
...
@@ -17404,6 +17420,9 @@ void optimize_wo_join_buffering(JOIN *join, uint first_tab, uint last_tab,
...
@@ -17404,6 +17420,9 @@ void optimize_wo_join_buffering(JOIN *join, uint first_tab, uint last_tab,
reopt_remaining_tables &
reopt_remaining_tables &
~real_table_bit);
~real_table_bit);
}
}
double partial_join_cardinality= rec_count *
pushdown_cond_selectivity;
join->positions[i].partial_join_cardinality= partial_join_cardinality;
(*outer_rec_count) *= pushdown_cond_selectivity;
(*outer_rec_count) *= pushdown_cond_selectivity;
if (!rs->emb_sj_nest)
if (!rs->emb_sj_nest)
*outer_rec_count= COST_MULT(*outer_rec_count, pos.records_read);
*outer_rec_count= COST_MULT(*outer_rec_count, pos.records_read);
...
@@ -21048,6 +21067,16 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records)
...
@@ -21048,6 +21067,16 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records)
{
{
DBUG_ENTER("sub_select");
DBUG_ENTER("sub_select");
if (join_tab->split_derived_to_update && !end_of_records)
{
table_map tab_map= join_tab->split_derived_to_update;
for (uint i= 0; tab_map; i++, tab_map>>= 1)
{
if (tab_map & 1)
join->map2table[i]->preread_init_done= false;
}
}
if (join_tab->last_inner)
if (join_tab->last_inner)
{
{
JOIN_TAB *last_inner_tab= join_tab->last_inner;
JOIN_TAB *last_inner_tab= join_tab->last_inner;
...
...
sql/sql_select.h
View file @
e87440b7
...
@@ -394,6 +394,8 @@ typedef struct st_join_table {
...
@@ -394,6 +394,8 @@ typedef struct st_join_table {
*/
*/
bool
idx_cond_fact_out
;
bool
idx_cond_fact_out
;
bool
use_join_cache
;
bool
use_join_cache
;
/* TRUE <=> it is prohibited to join this table using join buffer */
bool
no_forced_join_cache
;
uint
used_join_cache_level
;
uint
used_join_cache_level
;
ulong
join_buffer_size_limit
;
ulong
join_buffer_size_limit
;
JOIN_CACHE
*
cache
;
JOIN_CACHE
*
cache
;
...
@@ -520,6 +522,16 @@ typedef struct st_join_table {
...
@@ -520,6 +522,16 @@ typedef struct st_join_table {
bool
preread_init_done
;
bool
preread_init_done
;
/* true <=> split optimization has been applied to this materialized table */
bool
is_split_derived
;
/*
Bitmap of split materialized derived tables that can be filled just before
this join table is to be joined. All parameters of the split derived tables
belong to tables preceding this join table.
*/
table_map
split_derived_to_update
;
/*
/*
Cost info to the range filter used when joining this join table
Cost info to the range filter used when joining this join table
(Defined when the best join order has been already chosen)
(Defined when the best join order has been already chosen)
...
@@ -682,9 +694,10 @@ typedef struct st_join_table {
...
@@ -682,9 +694,10 @@ typedef struct st_join_table {
void
partial_cleanup
();
void
partial_cleanup
();
void
add_keyuses_for_splitting
();
void
add_keyuses_for_splitting
();
SplM_plan_info
*
choose_best_splitting
(
double
record_count
,
SplM_plan_info
*
choose_best_splitting
(
uint
idx
,
table_map
remaining_tables
);
table_map
remaining_tables
,
bool
fix_splitting
(
SplM_plan_info
*
spl_plan
,
table_map
remaining_tables
,
table_map
*
spl_pd_boundary
);
bool
fix_splitting
(
SplM_plan_info
*
spl_plan
,
table_map
excluded_tables
,
bool
is_const_table
);
bool
is_const_table
);
}
JOIN_TAB
;
}
JOIN_TAB
;
...
@@ -949,9 +962,21 @@ class POSITION
...
@@ -949,9 +962,21 @@ class POSITION
*/
*/
KEYUSE
*
key
;
KEYUSE
*
key
;
/* Cardinality of current partial join ending with this position */
double
partial_join_cardinality
;
/* Info on splitting plan used at this position */
/* Info on splitting plan used at this position */
SplM_plan_info
*
spl_plan
;
SplM_plan_info
*
spl_plan
;
/*
If spl_plan is NULL the value of spl_pd_boundary is 0. Otherwise
spl_pd_boundary contains the bitmap of the table from the current
partial join ending at this position that starts the sub-sequence of
tables S from which no conditions are allowed to be used in the plan
spl_plan for the split table joined at this position.
*/
table_map
spl_pd_boundary
;
/* Cost info for the range filter used at this position */
/* Cost info for the range filter used at this position */
Range_rowid_filter_cost_info
*
range_rowid_filter_info
;
Range_rowid_filter_cost_info
*
range_rowid_filter_info
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment