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
Dataconvert::decimalToString badly fails w/o 20th member of mcs_pow_10 so I returned it
WF::percentile runtime threw an exception b/c of wrong DT deduced from its argument Replaced literals with constants Tought WF_sum_avg::checkSumLimit to use refs instead of values
This commit is contained in:
@ -962,11 +962,15 @@ inline long double Row::getLongDoubleField(uint32_t colIndex) const
|
||||
return *((long double*) &data[offsets[colIndex]]);
|
||||
}
|
||||
|
||||
// !!! Never ever try to remove inline from this f() b/c it returns
|
||||
// non-integral 16 byte DT
|
||||
inline int128_t Row::getInt128Field(uint32_t colIndex) const
|
||||
{
|
||||
return *((int128_t*) &data[offsets[colIndex]]);
|
||||
}
|
||||
|
||||
// !!! Never ever try to remove inline from this f() b/c it returns
|
||||
// non-integral 16 byte DT
|
||||
inline uint128_t Row::getUint128Field(uint32_t colIndex) const
|
||||
{
|
||||
return *((uint128_t*) &data[offsets[colIndex]]);
|
||||
|
Reference in New Issue
Block a user