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
7c5a417a
Commit
7c5a417a
authored
Jan 18, 2007
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
after merge fix.
parent
2ca87ae3
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
365 deletions
+19
-365
mysql-test/r/select.result
mysql-test/r/select.result
+17
-363
sql/item.cc
sql/item.cc
+2
-2
No files found.
mysql-test/r/select.result
View file @
7c5a417a
This diff is collapsed.
Click to expand it.
sql/item.cc
View file @
7c5a417a
...
...
@@ -4478,10 +4478,10 @@ int Item_hex_string::save_in_field(Field *field, bool no_conversions)
nr
=
LONGLONG_MAX
;
goto
warn
;
}
return
field
->
store
((
longlong
)
nr
);
return
field
->
store
((
longlong
)
nr
,
TRUE
);
// Assume hex numbers are unsigned
warn:
if
(
!
field
->
store
((
longlong
)
nr
))
if
(
!
field
->
store
((
longlong
)
nr
,
TRUE
))
field
->
set_warning
(
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
ER_WARN_DATA_OUT_OF_RANGE
,
1
);
return
1
;
...
...
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