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
c3e40306
Commit
c3e40306
authored
Aug 01, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/jimw/my/mysql-4.1-11402
into mysql.com:/home/jimw/my/mysql-4.1-clean
parents
9a556068
1fa7b95d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
mysql-test/r/func_math.result
mysql-test/r/func_math.result
+3
-0
mysql-test/t/func_math.test
mysql-test/t/func_math.test
+5
-0
sql/item_func.cc
sql/item_func.cc
+0
-3
No files found.
mysql-test/r/func_math.result
View file @
c3e40306
...
...
@@ -137,3 +137,6 @@ select * from t1;
round(1, 6)
1.000000
drop table t1;
select abs(-2) * -2;
abs(-2) * -2
-4
mysql-test/t/func_math.test
View file @
c3e40306
...
...
@@ -72,4 +72,9 @@ show create table t1;
select
*
from
t1
;
drop
table
t1
;
#
# Bug #11402: abs() forces rest of calculation to unsigned
#
select
abs
(
-
2
)
*
-
2
;
# End of 4.1 tests
sql/item_func.cc
View file @
c3e40306
...
...
@@ -765,10 +765,7 @@ void Item_func_abs::fix_length_and_dec()
max_length
=
args
[
0
]
->
max_length
;
hybrid_type
=
REAL_RESULT
;
if
(
args
[
0
]
->
result_type
()
==
INT_RESULT
)
{
hybrid_type
=
INT_RESULT
;
unsigned_flag
=
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