mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 05:03:20 +00:00
140 lines
4.3 KiB
C++
140 lines
4.3 KiB
C++
#include <IO/WriteHelpers.h>
|
|
|
|
#include <Columns/ColumnConst.h>
|
|
#include <Columns/ColumnsCommon.h>
|
|
#include <Common/typeid_cast.h>
|
|
#include <Common/WeakHash.h>
|
|
#include <Common/HashTable/Hash.h>
|
|
|
|
#if defined(MEMORY_SANITIZER)
|
|
#include <sanitizer/msan_interface.h>
|
|
#endif
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int SIZES_OF_COLUMNS_DOESNT_MATCH;
|
|
extern const int LOGICAL_ERROR;
|
|
}
|
|
|
|
ColumnConst::ColumnConst(const ColumnPtr & data_, size_t s_)
|
|
: data(data_), s(s_)
|
|
{
|
|
/// Squash Const of Const.
|
|
while (const ColumnConst * const_data = typeid_cast<const ColumnConst *>(data.get()))
|
|
data = const_data->getDataColumnPtr();
|
|
|
|
if (data->size() != 1)
|
|
throw Exception("Incorrect size of nested column in constructor of ColumnConst: " + toString(data->size()) + ", must be 1.",
|
|
ErrorCodes::SIZES_OF_COLUMNS_DOESNT_MATCH);
|
|
|
|
/// Check that the value is initialized. We do it earlier, before it will be used, to ease debugging.
|
|
#if defined(MEMORY_SANITIZER)
|
|
if (data->isFixedAndContiguous())
|
|
{
|
|
StringRef value = data->getDataAt(0);
|
|
__msan_check_mem_is_initialized(value.data, value.size);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
ColumnPtr ColumnConst::convertToFullColumn() const
|
|
{
|
|
return data->replicate(Offsets(1, s));
|
|
}
|
|
|
|
ColumnPtr ColumnConst::removeLowCardinality() const
|
|
{
|
|
return ColumnConst::create(data->convertToFullColumnIfLowCardinality(), s);
|
|
}
|
|
|
|
ColumnPtr ColumnConst::filter(const Filter & filt, ssize_t /*result_size_hint*/) const
|
|
{
|
|
if (s != filt.size())
|
|
throw Exception("Size of filter (" + toString(filt.size()) + ") doesn't match size of column (" + toString(s) + ")",
|
|
ErrorCodes::SIZES_OF_COLUMNS_DOESNT_MATCH);
|
|
|
|
return ColumnConst::create(data, countBytesInFilter(filt));
|
|
}
|
|
|
|
ColumnPtr ColumnConst::replicate(const Offsets & offsets) const
|
|
{
|
|
if (s != offsets.size())
|
|
throw Exception("Size of offsets (" + toString(offsets.size()) + ") doesn't match size of column (" + toString(s) + ")",
|
|
ErrorCodes::SIZES_OF_COLUMNS_DOESNT_MATCH);
|
|
|
|
size_t replicated_size = 0 == s ? 0 : offsets.back();
|
|
return ColumnConst::create(data, replicated_size);
|
|
}
|
|
|
|
ColumnPtr ColumnConst::permute(const Permutation & perm, size_t limit) const
|
|
{
|
|
if (limit == 0)
|
|
limit = s;
|
|
else
|
|
limit = std::min(s, limit);
|
|
|
|
if (perm.size() < limit)
|
|
throw Exception("Size of permutation (" + toString(perm.size()) + ") is less than required (" + toString(limit) + ")",
|
|
ErrorCodes::SIZES_OF_COLUMNS_DOESNT_MATCH);
|
|
|
|
return ColumnConst::create(data, limit);
|
|
}
|
|
|
|
ColumnPtr ColumnConst::index(const IColumn & indexes, size_t limit) const
|
|
{
|
|
if (limit == 0)
|
|
limit = indexes.size();
|
|
|
|
if (indexes.size() < limit)
|
|
throw Exception("Size of indexes (" + toString(indexes.size()) + ") is less than required (" + toString(limit) + ")",
|
|
ErrorCodes::SIZES_OF_COLUMNS_DOESNT_MATCH);
|
|
|
|
return ColumnConst::create(data, limit);
|
|
}
|
|
|
|
MutableColumns ColumnConst::scatter(ColumnIndex num_columns, const Selector & selector) const
|
|
{
|
|
if (s != selector.size())
|
|
throw Exception("Size of selector (" + toString(selector.size()) + ") doesn't match size of column (" + toString(s) + ")",
|
|
ErrorCodes::SIZES_OF_COLUMNS_DOESNT_MATCH);
|
|
|
|
std::vector<size_t> counts = countColumnsSizeInSelector(num_columns, selector);
|
|
|
|
MutableColumns res(num_columns);
|
|
for (size_t i = 0; i < num_columns; ++i)
|
|
res[i] = cloneResized(counts[i]);
|
|
|
|
return res;
|
|
}
|
|
|
|
void ColumnConst::getPermutation(bool /*reverse*/, size_t /*limit*/, int /*nan_direction_hint*/, Permutation & res) const
|
|
{
|
|
res.resize(s);
|
|
for (size_t i = 0; i < s; ++i)
|
|
res[i] = i;
|
|
}
|
|
|
|
void ColumnConst::updatePermutation(bool, size_t, int, Permutation &, EqualRanges &) const
|
|
{
|
|
}
|
|
|
|
void ColumnConst::updateWeakHash32(WeakHash32 & hash) const
|
|
{
|
|
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);
|
|
|
|
WeakHash32 element_hash(1);
|
|
data->updateWeakHash32(element_hash);
|
|
size_t data_hash = element_hash.getData()[0];
|
|
|
|
for (auto & value : hash.getData())
|
|
value = intHashCRC32(data_hash, value);
|
|
}
|
|
|
|
}
|