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

MCOL-641 Fix for GROUP BY on wide-DECIMALs.

This commit is contained in:
Roman Nozdrin
2020-05-18 13:00:20 +00:00
parent a7fcf39f2a
commit 51d77d74df
2 changed files with 20 additions and 12 deletions

View File

@ -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;
}