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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
053f7a42
Commit
053f7a42
authored
Feb 09, 2007
by
gkodinov/kgeorge@macbook.gmz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Addendum to fix of bug #22344 : removed dead code.
parent
5092f7ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
12 deletions
+1
-12
sql/item.cc
sql/item.cc
+1
-12
No files found.
sql/item.cc
View file @
053f7a42
...
...
@@ -5277,18 +5277,7 @@ my_decimal *Item_ref::val_decimal(my_decimal *decimal_value)
int
Item_ref
::
save_in_field
(
Field
*
to
,
bool
no_conversions
)
{
int
res
;
if
(
result_field
)
{
if
(
result_field
->
is_null
())
{
null_value
=
1
;
return
set_field_to_null_with_conversions
(
to
,
no_conversions
);
}
to
->
set_notnull
();
res
=
field_conv
(
to
,
result_field
);
null_value
=
0
;
return
res
;
}
DBUG_ASSERT
(
!
result_field
);
res
=
(
*
ref
)
->
save_in_field
(
to
,
no_conversions
);
null_value
=
(
*
ref
)
->
null_value
;
return
res
;
...
...
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