You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
MCOL-641 Fix for GROUP BY on wide-DECIMALs.
This commit is contained in:
@ -1359,7 +1359,7 @@ inline bool Row::equals(const Row& r2, uint32_t lastCol) const
|
||||
}
|
||||
else if (UNLIKELY(execplan::isDecimal(columnType)))
|
||||
{
|
||||
if (getBinaryField<int128_t>(i) != r2.getBinaryField<int128_t>(i))
|
||||
if (*getBinaryField<int128_t>(i) != *r2.getBinaryField<int128_t>(i))
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user