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
1be9c51b
Commit
1be9c51b
authored
Apr 06, 2021
by
Sergei Petrunia
Committed by
Alexey Botchkov
Apr 21, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-25202: JSON_TABLE: Early table reference leads to unexpected result set
- Address review input. No functional changes.
parent
0fedaf21
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
11 deletions
+13
-11
sql/json_table.cc
sql/json_table.cc
+13
-11
No files found.
sql/json_table.cc
View file @
1be9c51b
...
@@ -135,18 +135,16 @@ static
...
@@ -135,18 +135,16 @@ static
table_map
get_disallowed_table_deps
(
JOIN
*
join
,
table_map
table_func_bit
)
table_map
get_disallowed_table_deps
(
JOIN
*
join
,
table_map
table_func_bit
)
{
{
table_map
disallowed_tables
=
0
;
table_map
disallowed_tables
=
0
;
if
(
get_disallowed_table_deps_for_list
(
table_func_bit
,
join
->
join_list
,
if
(
!
get_disallowed_table_deps_for_list
(
table_func_bit
,
join
->
join_list
,
&
disallowed_tables
))
&
disallowed_tables
))
return
disallowed_tables
;
else
{
{
// We haven't found the table with table_func_bit in all tables?
DBUG_ASSERT
(
0
);
DBUG_ASSERT
(
0
);
return
disallowed_tables
;
}
}
return
disallowed_tables
;
}
}
/*
/*
A table that produces output rows for JSON_TABLE().
A table that produces output rows for JSON_TABLE().
*/
*/
...
@@ -1229,10 +1227,10 @@ void Table_function_json_table::end_nested_path()
...
@@ -1229,10 +1227,10 @@ void Table_function_json_table::end_nested_path()
bool
push_table_function_arg_context
(
LEX
*
lex
,
MEM_ROOT
*
alloc
)
bool
push_table_function_arg_context
(
LEX
*
lex
,
MEM_ROOT
*
alloc
)
{
{
// Walk the context stack until we find a context that is
select-level
// Walk the context stack until we find a context that is
used for resolving
//
context
.
//
the SELECT's WHERE clause
.
List_iterator
<
Name_resolution_context
>
it
(
lex
->
context_stack
);
List_iterator
<
Name_resolution_context
>
it
(
lex
->
context_stack
);
Name_resolution_context
*
ctx
=
NULL
;
Name_resolution_context
*
ctx
;
while
((
ctx
=
it
++
))
while
((
ctx
=
it
++
))
{
{
if
(
ctx
->
select_lex
&&
ctx
==
&
ctx
->
select_lex
->
context
)
if
(
ctx
->
select_lex
&&
ctx
==
&
ctx
->
select_lex
->
context
)
...
@@ -1242,6 +1240,10 @@ bool push_table_function_arg_context(LEX *lex, MEM_ROOT *alloc)
...
@@ -1242,6 +1240,10 @@ bool push_table_function_arg_context(LEX *lex, MEM_ROOT *alloc)
// Then, create a copy of it and return it.
// Then, create a copy of it and return it.
Name_resolution_context
*
new_ctx
=
new
(
alloc
)
Name_resolution_context
;
Name_resolution_context
*
new_ctx
=
new
(
alloc
)
Name_resolution_context
;
// Note: not all fields of *ctx are initialized yet at this point.
// We will get all of the fields filled in Table_function_json_table::setup
// (search for the "Prepare the name resolution context" comment).
*
new_ctx
=
*
ctx
;
*
new_ctx
=
*
ctx
;
return
lex
->
push_context
(
new_ctx
);
return
lex
->
push_context
(
new_ctx
);
}
}
...
@@ -1274,8 +1276,8 @@ int Table_function_json_table::setup(THD *thd, TABLE_LIST *sql_table,
...
@@ -1274,8 +1276,8 @@ int Table_function_json_table::setup(THD *thd, TABLE_LIST *sql_table,
save_is_item_list_lookup
=
thd
->
lex
->
current_select
->
is_item_list_lookup
;
save_is_item_list_lookup
=
thd
->
lex
->
current_select
->
is_item_list_lookup
;
thd
->
lex
->
current_select
->
is_item_list_lookup
=
0
;
thd
->
lex
->
current_select
->
is_item_list_lookup
=
0
;
// Prepare the name resolution context. First, copy the context that
// Prepare the name resolution context. First, copy the context that
is
//
is using
for name resolution of the WHERE clause
//
used
for name resolution of the WHERE clause
*
m_context
=
thd
->
lex
->
current_select
->
context
;
*
m_context
=
thd
->
lex
->
current_select
->
context
;
// Then, restrict it to only allow to refer to tables that come before the
// Then, restrict it to only allow to refer to tables that come before the
...
...
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