You've already forked mariadb-columnstore-engine
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:
@ -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.");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user