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
e7c02801
Commit
e7c02801
authored
May 10, 2005
by
jani@ibmlab.site
Browse files
Options
Browse Files
Download
Plain Diff
Merge jamppa@bk-internal.mysql.com:/home/bk/mysql-5.0
into ibmlab.site:/home/my/bk/mysql-5.0
parents
0d2cb6c8
0b5cedca
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
1 deletion
+35
-1
mysql-test/r/type_newdecimal.result
mysql-test/r/type_newdecimal.result
+13
-0
mysql-test/t/type_newdecimal.test
mysql-test/t/type_newdecimal.test
+14
-0
strings/decimal.c
strings/decimal.c
+8
-1
No files found.
mysql-test/r/type_newdecimal.result
View file @
e7c02801
...
...
@@ -863,3 +863,16 @@ select 0.190287977636363637 + 0.040372670 * 0 - 0;
select -0.123 * 0;
-0.123 * 0
0.000
CREATE TABLE t1 (f1 DECIMAL (12,9), f2 DECIMAL(2,2));
INSERT INTO t1 VALUES (10.5, 0);
UPDATE t1 SET f1 = 4.5;
SELECT * FROM t1;
f1 f2
4.500000000 0.00
DROP TABLE t1;
CREATE TABLE t1 (f1 DECIMAL (64,20), f2 DECIMAL(2,2));
INSERT INTO t1 VALUES (9999999999999999999999999999999999, 0);
SELECT * FROM t1;
f1 f2
9999999999999999999999999999999999.00000000000000000000 0.00
DROP TABLE t1;
mysql-test/t/type_newdecimal.test
View file @
e7c02801
...
...
@@ -892,3 +892,17 @@ select 0.190287977636363637 + 0.040372670 * 0 - 0;
# Bug #9527
#
select
-
0.123
*
0
;
#
# Bug #10232
#
CREATE
TABLE
t1
(
f1
DECIMAL
(
12
,
9
),
f2
DECIMAL
(
2
,
2
));
INSERT
INTO
t1
VALUES
(
10.5
,
0
);
UPDATE
t1
SET
f1
=
4.5
;
SELECT
*
FROM
t1
;
DROP
TABLE
t1
;
CREATE
TABLE
t1
(
f1
DECIMAL
(
64
,
20
),
f2
DECIMAL
(
2
,
2
));
INSERT
INTO
t1
VALUES
(
9999999999999999999999999999999999
,
0
);
SELECT
*
FROM
t1
;
DROP
TABLE
t1
;
strings/decimal.c
View file @
e7c02801
...
...
@@ -1162,6 +1162,8 @@ int decimal2bin(decimal_t *from, char *to, int precision, int frac)
isize0
=
intg0
*
sizeof
(
dec1
)
+
dig2bytes
[
intg0x
],
fsize0
=
frac0
*
sizeof
(
dec1
)
+
dig2bytes
[
frac0x
],
fsize1
=
frac1
*
sizeof
(
dec1
)
+
dig2bytes
[
frac1x
];
const
int
orig_isize0
=
isize0
;
const
int
orig_fsize0
=
fsize0
;
char
*
orig_to
=
to
;
buf1
=
remove_leading_zeroes
(
from
,
&
from_intg
);
...
...
@@ -1252,10 +1254,15 @@ int decimal2bin(decimal_t *from, char *to, int precision, int frac)
}
if
(
fsize0
>
fsize1
)
{
while
(
fsize0
--
>
fsize1
)
char
*
to_end
=
orig_to
+
orig_fsize0
+
orig_isize0
;
while
(
fsize0
--
>
fsize1
&&
to
<
to_end
)
*
to
++=
(
uchar
)
mask
;
}
orig_to
[
0
]
^=
0x80
;
/* Check that we have written the whole decimal and nothing more */
DBUG_ASSERT
(
to
==
orig_to
+
orig_fsize0
+
orig_isize0
);
return
error
;
}
...
...
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