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
145b7e8a
Commit
145b7e8a
authored
Nov 01, 2005
by
sergefp@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#13126: Post-review fixes: better comments, some function renaming.
parent
1441f1c1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
110 additions
and
62 deletions
+110
-62
sql/mysql_priv.h
sql/mysql_priv.h
+3
-2
sql/sql_select.cc
sql/sql_select.cc
+107
-60
No files found.
sql/mysql_priv.h
View file @
145b7e8a
...
@@ -45,8 +45,9 @@ typedef ulonglong table_map; /* Used for table bits in join */
...
@@ -45,8 +45,9 @@ typedef ulonglong table_map; /* Used for table bits in join */
typedef
Bitmap
<
64
>
key_map
;
/* Used for finding keys */
typedef
Bitmap
<
64
>
key_map
;
/* Used for finding keys */
typedef
ulong
key_part_map
;
/* Used for finding key parts */
typedef
ulong
key_part_map
;
/* Used for finding key parts */
/*
/*
Used for nested join bits within a scope of a join (applicable to non-unary
Used to identify NESTED_JOIN structures within a join (applicable only to
nested joins that have not been simplified away)
structures that have not been simplified away and embed more the one
element)
*/
*/
typedef
ulonglong
nested_join_map
;
typedef
ulonglong
nested_join_map
;
...
...
sql/sql_select.cc
View file @
145b7e8a
...
@@ -101,7 +101,7 @@ static COND *simplify_joins(JOIN *join, List<TABLE_LIST> *join_list,
...
@@ -101,7 +101,7 @@ static COND *simplify_joins(JOIN *join, List<TABLE_LIST> *join_list,
static
bool
check_interleaving_with_nj
(
JOIN_TAB
*
last
,
JOIN_TAB
*
next
);
static
bool
check_interleaving_with_nj
(
JOIN_TAB
*
last
,
JOIN_TAB
*
next
);
static
void
restore_prev_nj_state
(
JOIN_TAB
*
last
);
static
void
restore_prev_nj_state
(
JOIN_TAB
*
last
);
static
void
reset_nj_counters
(
List
<
TABLE_LIST
>
*
join_list
);
static
void
reset_nj_counters
(
List
<
TABLE_LIST
>
*
join_list
);
static
uint
build_
nj_bitmap_for_tables
(
JOIN
*
join
,
List
<
TABLE_LIST
>
*
join_list
,
static
uint
build_
bitmap_for_nested_joins
(
List
<
TABLE_LIST
>
*
join_list
,
uint
first_unused
);
uint
first_unused
);
static
COND
*
optimize_cond
(
JOIN
*
join
,
COND
*
conds
,
static
COND
*
optimize_cond
(
JOIN
*
join
,
COND
*
conds
,
...
@@ -595,7 +595,7 @@ JOIN::optimize()
...
@@ -595,7 +595,7 @@ JOIN::optimize()
/* Convert all outer joins to inner joins if possible */
/* Convert all outer joins to inner joins if possible */
conds
=
simplify_joins
(
this
,
join_list
,
conds
,
TRUE
);
conds
=
simplify_joins
(
this
,
join_list
,
conds
,
TRUE
);
build_
nj_bitmap_for_tables
(
this
,
join_list
,
0
);
build_
bitmap_for_nested_joins
(
join_list
,
0
);
sel
->
prep_where
=
conds
?
conds
->
copy_andor_structure
(
thd
)
:
0
;
sel
->
prep_where
=
conds
?
conds
->
copy_andor_structure
(
thd
)
:
0
;
...
@@ -7447,31 +7447,31 @@ simplify_joins(JOIN *join, List<TABLE_LIST> *join_list, COND *conds, bool top)
...
@@ -7447,31 +7447,31 @@ simplify_joins(JOIN *join, List<TABLE_LIST> *join_list, COND *conds, bool top)
Assign each nested join structure a bit in nested_join_map
Assign each nested join structure a bit in nested_join_map
SYNOPSIS
SYNOPSIS
build_
nj_bitmap_for_table
s()
build_
bitmap_for_nested_join
s()
join Join being processed
join Join being processed
join_list List of tables
join_list List of tables
first_unused Number of first unused bit in nested_join_map before the
first_unused Number of first unused bit in nested_join_map before the
call
call
DESCRIPTION
DESCRIPTION
Assign each nested join structure (except
for unary nested joins, see
Assign each nested join structure (except
"confluent" ones - those that
below
) a bit in nested_join_map.
embed only one element
) a bit in nested_join_map.
NOTE
NOTE
This function is called after simplify_joins(), when there are no
This function is called after simplify_joins(), when there are no
redundant nested joins, #non_
unary_nested_joins <= #tables_in_join so we
redundant nested joins, #non_
confluent_nested_joins <= #tables_in_join so
will not run out of bits in nested_join_map.
w
e w
ill not run out of bits in nested_join_map.
RETURN
RETURN
First unused bit in nested_join_map after the call.
First unused bit in nested_join_map after the call.
*/
*/
static
uint
build_
nj_bitmap_for_tables
(
JOIN
*
join
,
List
<
TABLE_LIST
>
*
join_list
,
static
uint
build_
bitmap_for_nested_joins
(
List
<
TABLE_LIST
>
*
join_list
,
uint
first_unused
)
uint
first_unused
)
{
{
List_iterator
<
TABLE_LIST
>
li
(
*
join_list
);
List_iterator
<
TABLE_LIST
>
li
(
*
join_list
);
TABLE_LIST
*
table
;
TABLE_LIST
*
table
;
DBUG_ENTER
(
"build_
nj_bitmap_for_table
s"
);
DBUG_ENTER
(
"build_
bitmap_for_nested_join
s"
);
while
((
table
=
li
++
))
while
((
table
=
li
++
))
{
{
NESTED_JOIN
*
nested_join
;
NESTED_JOIN
*
nested_join
;
...
@@ -7479,9 +7479,9 @@ static uint build_nj_bitmap_for_tables(JOIN *join, List<TABLE_LIST> *join_list,
...
@@ -7479,9 +7479,9 @@ static uint build_nj_bitmap_for_tables(JOIN *join, List<TABLE_LIST> *join_list,
{
{
/*
/*
It is guaranteed by simplify_joins() function that a nested join
It is guaranteed by simplify_joins() function that a nested join
that has only one child represents a single table VIEW (and
a
child
that has only one child represents a single table VIEW (and
the
child
is an underlying table). We don't assign
a bit to the
nested join
is an underlying table). We don't assign
bits to such
nested join
because
structures
because
1. it is redundant (a "sequence" of one table cannot be interleaved
1. it is redundant (a "sequence" of one table cannot be interleaved
with anything)
with anything)
2. we could run out bits in nested_join_map otherwise.
2. we could run out bits in nested_join_map otherwise.
...
@@ -7489,7 +7489,7 @@ static uint build_nj_bitmap_for_tables(JOIN *join, List<TABLE_LIST> *join_list,
...
@@ -7489,7 +7489,7 @@ static uint build_nj_bitmap_for_tables(JOIN *join, List<TABLE_LIST> *join_list,
if
(
nested_join
->
join_list
.
elements
!=
1
)
if
(
nested_join
->
join_list
.
elements
!=
1
)
{
{
nested_join
->
nj_map
=
1
<<
first_unused
++
;
nested_join
->
nj_map
=
1
<<
first_unused
++
;
first_unused
=
build_
nj_bitmap_for_tables
(
join
,
&
nested_join
->
join_list
,
first_unused
=
build_
bitmap_for_nested_joins
(
&
nested_join
->
join_list
,
first_unused
);
first_unused
);
}
}
}
}
...
@@ -7546,16 +7546,8 @@ static void reset_nj_counters(List<TABLE_LIST> *join_list)
...
@@ -7546,16 +7546,8 @@ static void reset_nj_counters(List<TABLE_LIST> *join_list)
The function assumes that both current partial join order and its
The function assumes that both current partial join order and its
extension with next_tab are valid wrt table dependencies.
extension with next_tab are valid wrt table dependencies.
NOTE
The nested joins aspect of information about current partial join order is
stored in join->cur_embedding_map and
{each_join_table}->pos_in_table_list (->embedding)+ ->nested_join->counter
Joins optimizer calls check_interleaving_with_nj() and
restore_prev_nj_state() to update this info and avoid constructing invalid
join orders. There is no need for any initialization of
{each_join_table}->...->counter before the join optimizer run.
IMPLEMENTATION
IMPLEMENTATION
LIMITATIONS ON JOIN ORDER
The nested [outer] joins executioner algorithm imposes these limitations
The nested [outer] joins executioner algorithm imposes these limitations
on join order:
on join order:
1. "Outer tables first" - any "outer" table must be before any
1. "Outer tables first" - any "outer" table must be before any
...
@@ -7564,8 +7556,8 @@ static void reset_nj_counters(List<TABLE_LIST> *join_list)
...
@@ -7564,8 +7556,8 @@ static void reset_nj_counters(List<TABLE_LIST> *join_list)
sequence in join order (i.e. the sequence must not be interrupted by
sequence in join order (i.e. the sequence must not be interrupted by
tables that are outside of this nested join).
tables that are outside of this nested join).
#1 is checked elsewhere, this function checks #2 provided that #1 has been
#1 is checked elsewhere, this function checks #2 provided that #1 has
already checked.
been
already checked.
WHY NEED NON-INTERLEAVING
WHY NEED NON-INTERLEAVING
Consider an example:
Consider an example:
...
@@ -7588,31 +7580,86 @@ static void reset_nj_counters(List<TABLE_LIST> *join_list)
...
@@ -7588,31 +7580,86 @@ static void reset_nj_counters(List<TABLE_LIST> *join_list)
wrapped into condition triggers, which takes care of correct nested
wrapped into condition triggers, which takes care of correct nested
join processing.
join processing.
HOW IT IS IMPLEMENTED
The limitations on join order can be rephrased as follows: for valid
join order one must be able to:
1. write down the used tables in the join order on one line.
2. for each nested join, put one '(' and one ')' on the said line
3. write "LEFT JOIN" and "ON (...)" where appropriate
4. get a query equivalent to the query we're trying to execute.
Calls to check_interleaving_with_nj() are equivalent to writing the
above described line from left to right.
A single check_interleaving_with_nj(A,B) call is equivalent to writing
table B and appropriate brackets on condition that table A and
appropriate brackets is the last what was written. Graphically the
transition is as follows:
+---- current position
|
... last_tab ))) | ( next_tab ) )..) | ...
X Y Z |
+- need to move to this
position.
Notes about the position:
The caller guarantees that there is no more then one X-bracket by
checking "!(remaining_tables & s->dependent)" before calling this
function. X-bracket may have a pair in Y-bracket.
When "writing" we store/update this auxilary info about the current
position:
1. join->cur_embedding_map - bitmap of pairs of brackets (aka nested
joins) we've opened but didn't close.
2. {each NESTED_JOIN structure not simplified away}->counter - number
of this nested join's children that have already been added to to
the partial join order.
RETURN
RETURN
FALSE Join order extended, nested joins info about current join order
FALSE Join order extended, nested joins info about current join order
(see NOTE section) updated.
(see NOTE section) updated.
TRUE Requested join order extension not allowed.
TRUE Requested join order extension not allowed.
*/
*/
static
bool
check_interleaving_with_nj
(
JOIN_TAB
*
last
,
JOIN_TAB
*
next
)
static
bool
check_interleaving_with_nj
(
JOIN_TAB
*
last
_tab
,
JOIN_TAB
*
next_tab
)
{
{
TABLE_LIST
*
next_emb
=
next
->
table
->
pos_in_table_list
->
embedding
;
TABLE_LIST
*
next_emb
=
next
_tab
->
table
->
pos_in_table_list
->
embedding
;
JOIN
*
join
=
last
->
join
;
JOIN
*
join
=
last
_tab
->
join
;
if
(
join
->
cur_embedding_map
&
~
next
->
embedding_map
)
if
(
join
->
cur_embedding_map
&
~
next_tab
->
embedding_map
)
{
/*
next_tab is outside of the "pair of brackets" we're currently in.
Cannot add it.
*/
return
TRUE
;
return
TRUE
;
}
/*
Do update counters for "pairs of brackets" that we've left (marked as
X,Y,Z in the above picture)
*/
for
(;
next_emb
;
next_emb
=
next_emb
->
embedding
)
for
(;
next_emb
;
next_emb
=
next_emb
->
embedding
)
{
{
next_emb
->
nested_join
->
counter
++
;
next_emb
->
nested_join
->
counter
++
;
if
(
next_emb
->
nested_join
->
counter
==
1
)
if
(
next_emb
->
nested_join
->
counter
==
1
)
{
{
/* next_emb is a first table inside a nested join */
/*
next_emb is the first table inside a nested join we've "entered". In
the picture above, we're looking at the 'X' bracket. Don't exit yet as
X bracket might have Y pair bracket.
*/
join
->
cur_embedding_map
|=
next_emb
->
nested_join
->
nj_map
;
join
->
cur_embedding_map
|=
next_emb
->
nested_join
->
nj_map
;
}
}
if
(
next_emb
->
nested_join
->
join_list
.
elements
!=
if
(
next_emb
->
nested_join
->
join_list
.
elements
!=
next_emb
->
nested_join
->
counter
)
next_emb
->
nested_join
->
counter
)
break
;
break
;
/*
We're currently at Y or Z-bracket as depicted in the above picture.
Mark that we've left it and continue walking up the brackets hierarchy.
*/
join
->
cur_embedding_map
&=
~
next_emb
->
nested_join
->
nj_map
;
join
->
cur_embedding_map
&=
~
next_emb
->
nested_join
->
nj_map
;
}
}
return
FALSE
;
return
FALSE
;
...
...
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