1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-4463 Fix for BETWEEN() and wide DECIMAL columns

This commit is contained in:
Roman Nozdrin
2020-12-18 14:55:32 +00:00
parent cc6c51b540
commit ba4190d200
2 changed files with 29 additions and 22 deletions

View File

@ -461,7 +461,7 @@ class Decimal: public TSInt128
if (scale == rhs.scale)
{
return op128(s128Value, rhs.s128Value);
return op128(s128Value, (int128_t) rhs.value);
}
else
{