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
::writeRow now treats WR_BINARY as int128 for 16 bytes DT only
WF avg uses const & as arguments types Removed BINARY from DDL parser
This commit is contained in:
@ -56,16 +56,12 @@ protected:
|
||||
bool fDistinct;
|
||||
std::set<T_IN> fSet;
|
||||
|
||||
void checkSumLimit(T_IN& val, T_OUT& sum);
|
||||
void checkSumLimit(const T_IN& val, const T_OUT& sum);
|
||||
|
||||
int128_t calculateAvg(int128_t sum, uint64_t count, int scale);
|
||||
long double calculateAvg(long double sum, uint64_t count, int scale);
|
||||
int128_t calculateAvg(const int128_t& sum, const uint64_t count, const int scale);
|
||||
long double calculateAvg(const long double& sum, const uint64_t count, const int scale);
|
||||
};
|
||||
|
||||
template<>
|
||||
void WF_sum_avg<long double,long double>::checkSumLimit(long double& val, long double& sum);
|
||||
|
||||
|
||||
} // namespace
|
||||
|
||||
#endif // UTILS_WF_SUM_AVG_H
|
||||
|
Reference in New Issue
Block a user