You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-24 14:20:59 +03:00
MCOL-4463 Fix for BETWEEN() and wide DECIMAL columns
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user