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

fix(funcexp): MCOL-5386 Bitwise aggregation functions do not work with wide decimals (internal error) (#3485)

This commit is contained in:
Akhmad Oripov
2025-04-08 17:47:47 +02:00
committed by GitHub
parent fde9155d18
commit a6ab9bd615
3 changed files with 34 additions and 0 deletions

View File

@ -866,6 +866,8 @@ inline int64_t Row::getIntField(uint32_t colIndex) const
case 8: return *((int64_t*)&data[offsets[colIndex]]);
case 16: return *((int128_t*)&data[offsets[colIndex]]);
default: idbassert(0); throw std::logic_error("Row::getIntField(): bad length.");
}
}