mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-15420 Wrong result for CAST from TIME or DATETIME with zero integer part and non-zero microseconds to DECIMAL(X,Y)
The loop in ull2dec() does not iterate if "from" is zero, so to->intg got erroneously set to 0 instead of 1. Because if this, my_decimal2seconds() wrote the fractional part into a wrong buf[x]. Catching the special case with zero "from" and properly initialize "to" using decimal_make_zero().
This commit is contained in:
@ -1000,6 +1000,12 @@ static int ull2dec(ulonglong from, decimal_t *to)
|
||||
|
||||
sanity(to);
|
||||
|
||||
if (!from)
|
||||
{
|
||||
decimal_make_zero(to);
|
||||
return E_DEC_OK;
|
||||
}
|
||||
|
||||
for (intg1=1; from >= DIG_BASE; intg1++, from/=DIG_BASE) {}
|
||||
if (unlikely(intg1 > to->len))
|
||||
{
|
||||
|
Reference in New Issue
Block a user