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
8d1ab8b4
Commit
8d1ab8b4
authored
Mar 16, 2007
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-5.0-maint
into pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint
parents
d8dd784f
ff07adae
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
0 deletions
+28
-0
mysql-test/r/type_newdecimal.result
mysql-test/r/type_newdecimal.result
+8
-0
mysql-test/t/type_newdecimal.test
mysql-test/t/type_newdecimal.test
+11
-0
sql/field_conv.cc
sql/field_conv.cc
+9
-0
No files found.
mysql-test/r/type_newdecimal.result
View file @
8d1ab8b4
...
...
@@ -1423,3 +1423,11 @@ cast(19999999999999999999 as unsigned)
18446744073709551615
Warnings:
Error 1292 Truncated incorrect DECIMAL value: ''
create table t1(a decimal(18));
insert into t1 values(123456789012345678);
alter table t1 modify column a decimal(19);
select * from t1;
a
123456789012345678
drop table t1;
End of 5.0 tests
mysql-test/t/type_newdecimal.test
View file @
8d1ab8b4
...
...
@@ -1120,3 +1120,14 @@ drop table t1;
#
select
cast
(
19999999999999999999
as
unsigned
);
#
# Bug #24558: Increasing decimal column length causes data loss
#
create
table
t1
(
a
decimal
(
18
));
insert
into
t1
values
(
123456789012345678
);
alter
table
t1
modify
column
a
decimal
(
19
);
select
*
from
t1
;
drop
table
t1
;
--
echo
End
of
5.0
tests
sql/field_conv.cc
View file @
8d1ab8b4
...
...
@@ -337,6 +337,13 @@ static void do_field_real(Copy_field *copy)
}
static
void
do_field_decimal
(
Copy_field
*
copy
)
{
my_decimal
value
;
copy
->
to_field
->
store_decimal
(
copy
->
from_field
->
val_decimal
(
&
value
));
}
/*
string copy for single byte characters set when to string is shorter than
from string
...
...
@@ -581,6 +588,8 @@ void (*Copy_field::get_copy_func(Field *to,Field *from))(Copy_field*)
if
(
to
->
real_type
()
==
FIELD_TYPE_BIT
||
from
->
real_type
()
==
FIELD_TYPE_BIT
)
return
do_field_int
;
if
(
to
->
result_type
()
==
DECIMAL_RESULT
)
return
do_field_decimal
;
// Check if identical fields
if
(
from
->
result_type
()
==
STRING_RESULT
)
{
...
...
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