mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
Fix terrible exception message
This commit is contained in:
parent
d0f1931ecc
commit
734df081da
@ -249,7 +249,7 @@ private:
|
|||||||
overflow |= common::mulOverflow(y, scale, y);
|
overflow |= common::mulOverflow(y, scale, y);
|
||||||
|
|
||||||
if (overflow)
|
if (overflow)
|
||||||
throw Exception("Can't compare", ErrorCodes::DECIMAL_OVERFLOW);
|
throw Exception("Can't compare decimal number due to overflow", ErrorCodes::DECIMAL_OVERFLOW);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user