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
3454b5cf
Commit
3454b5cf
authored
Dec 29, 2020
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '10.3' into 10.4
parents
4601e6e5
e59c1cef
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
mysql-test/main/cte_recursive.result
mysql-test/main/cte_recursive.result
+2
-2
sql/sql_lex.cc
sql/sql_lex.cc
+7
-7
No files found.
mysql-test/main/cte_recursive.result
View file @
3454b5cf
...
@@ -1301,7 +1301,7 @@ select ancestors.name, ancestors.dob from ancestors;
...
@@ -1301,7 +1301,7 @@ select ancestors.name, ancestors.dob from ancestors;
id select_type table type possible_keys key key_len ref rows Extra
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY <derived4> ALL NULL NULL NULL NULL 24
1 PRIMARY <derived4> ALL NULL NULL NULL NULL 24
4 DERIVED folks ALL NULL NULL NULL NULL 12 Using where
4 DERIVED folks ALL NULL NULL NULL NULL 12 Using where
6
RECURSIVE
UNION <derived3> ALL NULL NULL NULL NULL 12
6 UNION <derived3> ALL NULL NULL NULL NULL 12
5 RECURSIVE UNION <derived4> ALL NULL NULL NULL NULL 24
5 RECURSIVE UNION <derived4> ALL NULL NULL NULL NULL 24
NULL UNION RESULT <union4,6,5> ALL NULL NULL NULL NULL NULL
NULL UNION RESULT <union4,6,5> ALL NULL NULL NULL NULL NULL
3 DERIVED folks ALL NULL NULL NULL NULL 12 Using where
3 DERIVED folks ALL NULL NULL NULL NULL 12 Using where
...
@@ -4029,7 +4029,7 @@ id select_type table type possible_keys key key_len ref rows Extra
...
@@ -4029,7 +4029,7 @@ id select_type table type possible_keys key key_len ref rows Extra
3 RECURSIVE UNION t1 ALL NULL NULL NULL NULL 4 Using where
3 RECURSIVE UNION t1 ALL NULL NULL NULL NULL 4 Using where
3 RECURSIVE UNION <derived2> ref key0 key0 9 test.t1.c 2
3 RECURSIVE UNION <derived2> ref key0 key0 9 test.t1.c 2
NULL UNION RESULT <union2,3> ALL NULL NULL NULL NULL NULL
NULL UNION RESULT <union2,3> ALL NULL NULL NULL NULL NULL
4
RECURSIVE
UNION <derived2> ALL NULL NULL NULL NULL 4
4 UNION <derived2> ALL NULL NULL NULL NULL 4
with recursive r_cte as
with recursive r_cte as
(
select * from t1 as s
(
select * from t1 as s
union
union
...
...
sql/sql_lex.cc
View file @
3454b5cf
...
@@ -4831,16 +4831,16 @@ void st_select_lex::set_explain_type(bool on_the_fly)
...
@@ -4831,16 +4831,16 @@ void st_select_lex::set_explain_type(bool on_the_fly)
/*
/*
pos_in_table_list=NULL for e.g. post-join aggregation JOIN_TABs.
pos_in_table_list=NULL for e.g. post-join aggregation JOIN_TABs.
*/
*/
if
(
!
tab
->
table
);
if
(
!
(
tab
->
table
&&
tab
->
table
->
pos_in_table_list
))
else
if
(
const
TABLE_LIST
*
pos
=
tab
->
table
->
pos_in_table_list
)
continue
;
{
TABLE_LIST
*
tbl
=
tab
->
table
->
pos_in_table_list
;
if
(
pos
->
with
&&
pos
->
with
->
is_recursive
)
if
(
tbl
->
with
&&
tbl
->
with
->
is_recursive
&&
tbl
->
is_with_table_recursive_reference
())
{
{
uses_cte
=
true
;
uses_cte
=
true
;
break
;
break
;
}
}
}
}
}
if
(
uses_cte
)
if
(
uses_cte
)
type
=
"RECURSIVE UNION"
;
type
=
"RECURSIVE UNION"
;
}
}
...
...
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