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
45b9f0e3
Commit
45b9f0e3
authored
Apr 08, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-5.0
into deer.(none):/home/hf/work/mysql-5.0.errmsg
parents
81e8630e
6f0f3b07
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
7 deletions
+11
-7
mysql-test/r/row.result
mysql-test/r/row.result
+1
-1
sql/item.cc
sql/item.cc
+10
-6
No files found.
mysql-test/r/row.result
View file @
45b9f0e3
...
@@ -15,7 +15,7 @@ select row('a',1.5,3) IN (row(1,2,3), row('a',1.5,3), row('a','a','a'));
...
@@ -15,7 +15,7 @@ select row('a',1.5,3) IN (row(1,2,3), row('a',1.5,3), row('a','a','a'));
row('a',1.5,3) IN (row(1,2,3), row('a',1.5,3), row('a','a','a'))
row('a',1.5,3) IN (row(1,2,3), row('a',1.5,3), row('a','a','a'))
1
1
Warnings:
Warnings:
Error 1366 Incorrect decimal value: '' for column '' at row -1
Warning 1292 Truncated incorrect DECIMAL value: 'a'
Warning 1292 Truncated incorrect INTEGER value: 'a'
Warning 1292 Truncated incorrect INTEGER value: 'a'
select row('a',0,3) IN (row(3,2,3), row('a','a','3'), row(1,3,3));
select row('a',0,3) IN (row(3,2,3), row('a','a','3'), row(1,3,3));
row('a',0,3) IN (row(3,2,3), row('a','a','3'), row(1,3,3))
row('a',0,3) IN (row(3,2,3), row('a','a','3'), row(1,3,3))
...
...
sql/item.cc
View file @
45b9f0e3
...
@@ -260,8 +260,15 @@ my_decimal *Item::val_decimal_from_string(my_decimal *decimal_value)
...
@@ -260,8 +260,15 @@ my_decimal *Item::val_decimal_from_string(my_decimal *decimal_value)
return
0
;
// NULL or EOM
return
0
;
// NULL or EOM
end_ptr
=
(
char
*
)
res
->
ptr
()
+
res
->
length
();
end_ptr
=
(
char
*
)
res
->
ptr
()
+
res
->
length
();
str2my_decimal
(
E_DEC_FATAL_ERROR
,
res
->
ptr
(),
res
->
length
(),
res
->
charset
(),
if
(
str2my_decimal
(
E_DEC_FATAL_ERROR
&
~
E_DEC_BAD_NUM
,
decimal_value
);
res
->
ptr
(),
res
->
length
(),
res
->
charset
(),
decimal_value
)
&
E_DEC_BAD_NUM
)
{
push_warning_printf
(
current_thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
ER_TRUNCATED_WRONG_VALUE
,
ER
(
ER_TRUNCATED_WRONG_VALUE
),
"DECIMAL"
,
str_value
.
c_ptr
());
}
return
decimal_value
;
return
decimal_value
;
}
}
...
@@ -1515,10 +1522,7 @@ longlong Item_string::val_int()
...
@@ -1515,10 +1522,7 @@ longlong Item_string::val_int()
my_decimal
*
Item_string
::
val_decimal
(
my_decimal
*
decimal_value
)
my_decimal
*
Item_string
::
val_decimal
(
my_decimal
*
decimal_value
)
{
{
/* following assert is redundant, because fixed=1 assigned in constructor */
return
val_decimal_from_string
(
decimal_value
);
DBUG_ASSERT
(
fixed
==
1
);
string2my_decimal
(
E_DEC_FATAL_ERROR
,
&
str_value
,
decimal_value
);
return
(
decimal_value
);
}
}
...
...
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