#include #include #include #include #include #include #include #include #include #include #include template bool decimalLess(T x, T y, UInt32 x_scale, UInt32 y_scale); namespace DB { namespace ErrorCodes { extern const int PARAMETER_OUT_OF_BOUND; extern const int SIZES_OF_COLUMNS_DOESNT_MATCH; extern const int NOT_IMPLEMENTED; extern const int LOGICAL_ERROR; } template int ColumnDecimal::compareAt(size_t n, size_t m, const IColumn & rhs_, int) const { auto & other = static_cast(rhs_); const T & a = data[n]; const T & b = other.data[m]; if (scale == other.scale) return a > b ? 1 : (a < b ? -1 : 0); return decimalLess(b, a, other.scale, scale) ? 1 : (decimalLess(a, b, scale, other.scale) ? -1 : 0); } template StringRef ColumnDecimal::serializeValueIntoArena(size_t n, Arena & arena, char const *& begin) const { auto pos = arena.allocContinue(sizeof(T), begin); memcpy(pos, &data[n], sizeof(T)); return StringRef(pos, sizeof(T)); } template const char * ColumnDecimal::deserializeAndInsertFromArena(const char * pos) { data.push_back(unalignedLoad(pos)); return pos + sizeof(T); } template UInt64 ColumnDecimal::get64(size_t n) const { if constexpr (sizeof(T) > sizeof(UInt64)) throw Exception(String("Method get64 is not supported for ") + getFamilyName(), ErrorCodes::NOT_IMPLEMENTED); return static_cast(data[n]); } template void ColumnDecimal::updateHashWithValue(size_t n, SipHash & hash) const { hash.update(data[n]); } template void ColumnDecimal::updateWeakHash32(WeakHash32 & hash) const { auto s = data.size(); if (hash.getData().size() != s) throw Exception("Size of WeakHash32 does not match size of column: column size is " + std::to_string(s) + ", hash size is " + std::to_string(hash.getData().size()), ErrorCodes::LOGICAL_ERROR); const T * begin = data.data(); const T * end = begin + s; UInt32 * hash_data = hash.getData().data(); while (begin < end) { *hash_data = intHashCRC32(*begin, *hash_data); ++begin; ++hash_data; } } template void ColumnDecimal::getPermutation(bool reverse, size_t limit, int , IColumn::Permutation & res) const { #if 1 /// TODO: perf test if (data.size() <= std::numeric_limits::max()) { PaddedPODArray tmp_res; permutation(reverse, limit, tmp_res); res.resize(tmp_res.size()); for (size_t i = 0; i < tmp_res.size(); ++i) res[i] = tmp_res[i]; return; } #endif permutation(reverse, limit, res); } template ColumnPtr ColumnDecimal::permute(const IColumn::Permutation & perm, size_t limit) const { size_t size = limit ? std::min(data.size(), limit) : data.size(); if (perm.size() < size) throw Exception("Size of permutation is less than required.", ErrorCodes::SIZES_OF_COLUMNS_DOESNT_MATCH); auto res = this->create(size, scale); typename Self::Container & res_data = res->getData(); for (size_t i = 0; i < size; ++i) res_data[i] = data[perm[i]]; return res; } template MutableColumnPtr ColumnDecimal::cloneResized(size_t size) const { auto res = this->create(0, scale); if (size > 0) { auto & new_col = static_cast(*res); new_col.data.resize(size); size_t count = std::min(this->size(), size); memcpy(new_col.data.data(), data.data(), count * sizeof(data[0])); if (size > count) { void * tail = &new_col.data[count]; memset(tail, 0, (size - count) * sizeof(T)); } } return res; } template void ColumnDecimal::insertData(const char * src, size_t /*length*/) { T tmp; memcpy(&tmp, src, sizeof(T)); data.emplace_back(tmp); } template void ColumnDecimal::insertRangeFrom(const IColumn & src, size_t start, size_t length) { const ColumnDecimal & src_vec = assert_cast(src); if (start + length > src_vec.data.size()) throw Exception("Parameters start = " + toString(start) + ", length = " + toString(length) + " are out of bound in ColumnDecimal::insertRangeFrom method (data.size() = " + toString(src_vec.data.size()) + ").", ErrorCodes::PARAMETER_OUT_OF_BOUND); size_t old_size = data.size(); data.resize(old_size + length); memcpy(data.data() + old_size, &src_vec.data[start], length * sizeof(data[0])); } template ColumnPtr ColumnDecimal::filter(const IColumn::Filter & filt, ssize_t result_size_hint) const { size_t size = data.size(); if (size != filt.size()) throw Exception("Size of filter doesn't match size of column.", ErrorCodes::SIZES_OF_COLUMNS_DOESNT_MATCH); auto res = this->create(0, scale); Container & res_data = res->getData(); if (result_size_hint) res_data.reserve(result_size_hint > 0 ? result_size_hint : size); const UInt8 * filt_pos = filt.data(); const UInt8 * filt_end = filt_pos + size; const T * data_pos = data.data(); while (filt_pos < filt_end) { if (*filt_pos) res_data.push_back(*data_pos); ++filt_pos; ++data_pos; } return res; } template ColumnPtr ColumnDecimal::index(const IColumn & indexes, size_t limit) const { return selectIndexImpl(*this, indexes, limit); } template ColumnPtr ColumnDecimal::replicate(const IColumn::Offsets & offsets) const { size_t size = data.size(); if (size != offsets.size()) throw Exception("Size of offsets doesn't match size of column.", ErrorCodes::SIZES_OF_COLUMNS_DOESNT_MATCH); auto res = this->create(0, scale); if (0 == size) return res; typename Self::Container & res_data = res->getData(); res_data.reserve(offsets.back()); IColumn::Offset prev_offset = 0; for (size_t i = 0; i < size; ++i) { size_t size_to_replicate = offsets[i] - prev_offset; prev_offset = offsets[i]; for (size_t j = 0; j < size_to_replicate; ++j) res_data.push_back(data[i]); } return res; } template void ColumnDecimal::gather(ColumnGathererStream & gatherer) { gatherer.gather(*this); } template void ColumnDecimal::getExtremes(Field & min, Field & max) const { if (data.empty()) { min = NearestFieldType(0, scale); max = NearestFieldType(0, scale); return; } T cur_min = data[0]; T cur_max = data[0]; for (const T & x : data) { if (x < cur_min) cur_min = x; else if (x > cur_max) cur_max = x; } min = NearestFieldType(cur_min, scale); max = NearestFieldType(cur_max, scale); } template class ColumnDecimal; template class ColumnDecimal; template class ColumnDecimal; }