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
0565d199
Commit
0565d199
authored
Jan 26, 2021
by
Roman Nozdrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-24298 Select Handler now process INSERT..SELECT with a single derived at
the top level
parent
927a8823
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
58 additions
and
41 deletions
+58
-41
sql/sql_select.cc
sql/sql_select.cc
+58
-41
No files found.
sql/sql_select.cc
View file @
0565d199
...
...
@@ -4539,6 +4539,63 @@ void JOIN::cleanup_item_list(List<Item> &items) const
}
/**
@brief
Look for provision of the select_handler interface by a foreign engine
@param thd The thread handler
@details
The function checks that this is an upper level select and if so looks
through its tables searching for one whose handlerton owns a
create_select call-back function. If the call of this function returns
a select_handler interface object then the server will push the select
query into this engine.
This is a responsibility of the create_select call-back function to
check whether the engine can execute the query.
@retval the found select_handler if the search is successful
0 otherwise
*/
select_handler
*
find_select_handler
(
THD
*
thd
,
SELECT_LEX
*
select_lex
)
{
if
(
select_lex
->
next_select
())
return
0
;
if
(
select_lex
->
master_unit
()
->
outer_select
())
return
0
;
TABLE_LIST
*
tbl
=
nullptr
;
// For SQLCOM_INSERT_SELECT the server takes TABLE_LIST
// from thd->lex->query_tables and skips its first table
// b/c it is the target table for the INSERT..SELECT.
if
(
thd
->
lex
->
sql_command
!=
SQLCOM_INSERT_SELECT
)
{
tbl
=
select_lex
->
join
->
tables_list
;
}
else
if
(
thd
->
lex
->
query_tables
&&
thd
->
lex
->
query_tables
->
next_global
)
{
tbl
=
thd
->
lex
->
query_tables
->
next_global
;
}
else
return
0
;
for
(;
tbl
;
tbl
=
tbl
->
next_global
)
{
if
(
!
tbl
->
table
)
continue
;
handlerton
*
ht
=
tbl
->
table
->
file
->
partition_ht
();
if
(
!
ht
->
create_select
)
continue
;
select_handler
*
sh
=
ht
->
create_select
(
thd
,
select_lex
);
return
sh
;
}
return
0
;
}
/**
An entry point to single-unit select (a select without UNION).
...
...
@@ -4643,7 +4700,7 @@ mysql_select(THD *thd, TABLE_LIST *tables, List<Item> &fields, COND *conds,
}
/* Look for a table owned by an engine with the select_handler interface */
select_lex
->
pushdown_select
=
select_lex
->
find_select_handler
(
thd
);
select_lex
->
pushdown_select
=
find_select_handler
(
thd
,
select_lex
);
if
((
err
=
join
->
optimize
()))
{
...
...
@@ -29061,46 +29118,6 @@ void JOIN_TAB::partial_cleanup()
free_cache
(
&
read_record
);
}
/**
@brief
Look for provision of the select_handler interface by a foreign engine
@param thd The thread handler
@details
The function checks that this is an upper level select and if so looks
through its tables searching for one whose handlerton owns a
create_select call-back function. If the call of this function returns
a select_handler interface object then the server will push the select
query into this engine.
This is a responsibility of the create_select call-back function to
check whether the engine can execute the query.
@retval the found select_handler if the search is successful
0 otherwise
*/
select_handler
*
SELECT_LEX
::
find_select_handler
(
THD
*
thd
)
{
if
(
next_select
())
return
0
;
if
(
master_unit
()
->
outer_select
())
return
0
;
for
(
TABLE_LIST
*
tbl
=
join
->
tables_list
;
tbl
;
tbl
=
tbl
->
next_global
)
{
if
(
!
tbl
->
table
)
continue
;
handlerton
*
ht
=
tbl
->
table
->
file
->
partition_ht
();
if
(
!
ht
->
create_select
)
continue
;
select_handler
*
sh
=
ht
->
create_select
(
thd
,
this
);
return
sh
;
}
return
0
;
}
/**
@brief
Construct not null conditions for provingly not nullable fields
...
...
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