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
c0c56d13
Commit
c0c56d13
authored
Nov 06, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk@192.168.21.1:mysql-5.0-opt
into mysql.com:/home/hf/work/8663/my50-8663 sql/item_func.cc: Auto merged
parents
0e69c252
f00e6bd7
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
2 deletions
+20
-2
mysql-test/r/type_newdecimal.result
mysql-test/r/type_newdecimal.result
+5
-0
mysql-test/t/type_newdecimal.test
mysql-test/t/type_newdecimal.test
+6
-0
sql/item_func.cc
sql/item_func.cc
+8
-1
strings/decimal.c
strings/decimal.c
+1
-1
No files found.
mysql-test/r/type_newdecimal.result
View file @
c0c56d13
...
...
@@ -1412,3 +1412,8 @@ i2 count(distinct j)
1.0 2
2.0 2
drop table t1;
select cast(19999999999999999999 as unsigned);
cast(19999999999999999999 as unsigned)
18446744073709551615
Warnings:
Error 1292 Truncated incorrect DECIMAL value: ''
mysql-test/t/type_newdecimal.test
View file @
c0c56d13
...
...
@@ -1108,3 +1108,9 @@ insert into t1 values (1,1), (1,2), (2,3), (2,4);
select
i
,
count
(
distinct
j
)
from
t1
group
by
i
;
select
i
+
0.0
as
i2
,
count
(
distinct
j
)
from
t1
group
by
i2
;
drop
table
t1
;
#
# Bug #8663 (cant use bigint as input to CAST)
#
select
cast
(
19999999999999999999
as
unsigned
);
sql/item_func.cc
View file @
c0c56d13
...
...
@@ -964,7 +964,14 @@ longlong Item_func_unsigned::val_int()
longlong
value
;
int
error
;
if
(
args
[
0
]
->
cast_to_int_type
()
!=
STRING_RESULT
)
if
(
args
[
0
]
->
cast_to_int_type
()
==
DECIMAL_RESULT
)
{
my_decimal
tmp
,
*
dec
=
args
[
0
]
->
val_decimal
(
&
tmp
);
if
(
!
(
null_value
=
args
[
0
]
->
null_value
))
my_decimal2int
(
E_DEC_FATAL_ERROR
,
dec
,
1
,
&
value
);
return
value
;
}
else
if
(
args
[
0
]
->
cast_to_int_type
()
!=
STRING_RESULT
)
{
value
=
args
[
0
]
->
val_int
();
null_value
=
args
[
0
]
->
null_value
;
...
...
strings/decimal.c
View file @
c0c56d13
...
...
@@ -1036,7 +1036,7 @@ int decimal2ulonglong(decimal_t *from, ulonglong *to)
x
=
x
*
DIG_BASE
+
*
buf
++
;
if
(
unlikely
(
y
>
((
ulonglong
)
ULONGLONG_MAX
/
DIG_BASE
)
||
x
<
y
))
{
*
to
=
y
;
*
to
=
ULONGLONG_MAX
;
return
E_DEC_OVERFLOW
;
}
}
...
...
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