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
537f7706
Commit
537f7706
authored
Jun 28, 2012
by
Norvald H. Ryeng
Browse files
Options
Browse Files
Download
Plain Diff
Merge.
parents
78dce2d5
5f61cc43
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
sql/item.cc
sql/item.cc
+1
-1
sql/sql_select.cc
sql/sql_select.cc
+6
-0
No files found.
sql/item.cc
View file @
537f7706
...
...
@@ -6010,7 +6010,7 @@ bool Item_ref::fix_fields(THD *thd, Item **reference)
if
(
from_field
!=
not_found_field
)
{
Item_field
*
fld
;
if
(
!
(
fld
=
new
Item_field
(
from_field
)))
if
(
!
(
fld
=
new
Item_field
(
thd
,
last_checked_context
,
from_field
)))
goto
error
;
thd
->
change_item_tree
(
reference
,
fld
);
mark_as_dependent
(
thd
,
last_checked_context
->
select_lex
,
...
...
sql/sql_select.cc
View file @
537f7706
...
...
@@ -528,6 +528,8 @@ JOIN::prepare(Item ***rref_pointer_array,
if
(
having
)
{
Query_arena
backup
,
*
arena
;
arena
=
thd
->
activate_stmt_arena_if_needed
(
&
backup
);
nesting_map
save_allow_sum_func
=
thd
->
lex
->
allow_sum_func
;
thd
->
where
=
"having clause"
;
thd
->
lex
->
allow_sum_func
|=
1
<<
select_lex_arg
->
nest_level
;
...
...
@@ -536,6 +538,10 @@ JOIN::prepare(Item ***rref_pointer_array,
(
having
->
fix_fields
(
thd
,
&
having
)
||
having
->
check_cols
(
1
)));
select_lex
->
having_fix_field
=
0
;
select_lex
->
having
=
having
;
if
(
arena
)
thd
->
restore_active_arena
(
arena
,
&
backup
);
if
(
having_fix_rc
||
thd
->
is_error
())
DBUG_RETURN
(
-
1
);
/* purecov: inspected */
thd
->
lex
->
allow_sum_func
=
save_allow_sum_func
;
...
...
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