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

Merge pull request #1689 from drrtuy/MCOL-4463

MCOL-4463 Fix for BETWEEN() and wide DECIMAL columns
This commit is contained in:
Roman Nozdrin
2020-12-22 12:07:29 +03:00
committed by GitHub
2 changed files with 29 additions and 22 deletions

View File

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