mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
150 lines
6.1 KiB
C++
150 lines
6.1 KiB
C++
#pragma once
|
|
#include <Columns/IColumn.h>
|
|
#include <Common/UInt128.h>
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int NOT_IMPLEMENTED;
|
|
}
|
|
|
|
class IColumnUnique : public IColumn
|
|
{
|
|
public:
|
|
using ColumnUniquePtr = IColumn::template immutable_ptr<IColumnUnique>;
|
|
using MutableColumnUniquePtr = IColumn::template mutable_ptr<IColumnUnique>;
|
|
|
|
/// Column always contains Null if it's Nullable and empty string if it's String or Nullable(String).
|
|
/// So, size may be greater than the number of inserted unique values.
|
|
virtual const ColumnPtr & getNestedColumn() const = 0;
|
|
/// The same as getNestedColumn, but removes null map if nested column is nullable.
|
|
virtual const ColumnPtr & getNestedNotNullableColumn() const = 0;
|
|
|
|
virtual bool nestedColumnIsNullable() const = 0;
|
|
|
|
/// Returns array with StringRefHash calculated for each row of getNestedNotNullableColumn() column.
|
|
/// Returns nullptr if nested column doesn't contain strings. Otherwise calculates hash (if it wasn't).
|
|
/// Uses thread-safe cache.
|
|
virtual const UInt64 * tryGetSavedHash() const = 0;
|
|
|
|
size_t size() const override { return getNestedNotNullableColumn()->size(); }
|
|
|
|
/// Appends new value at the end of column (column's size is increased by 1).
|
|
/// Is used to transform raw strings to Blocks (for example, inside input format parsers)
|
|
virtual size_t uniqueInsert(const Field & x) = 0;
|
|
|
|
virtual size_t uniqueInsertFrom(const IColumn & src, size_t n) = 0;
|
|
/// Appends range of elements from other column.
|
|
/// Could be used to concatenate columns.
|
|
virtual MutableColumnPtr uniqueInsertRangeFrom(const IColumn & src, size_t start, size_t length) = 0;
|
|
|
|
struct IndexesWithOverflow
|
|
{
|
|
MutableColumnPtr indexes;
|
|
MutableColumnPtr overflowed_keys;
|
|
};
|
|
/// Like uniqueInsertRangeFrom, but doesn't insert keys if inner dictionary has more than max_dictionary_size keys.
|
|
/// Keys that won't be inserted into dictionary will be into overflowed_keys, indexes will be calculated for
|
|
/// concatenation of nested column (which can be got from getNestedColumn() function) and overflowed_keys.
|
|
virtual IndexesWithOverflow uniqueInsertRangeWithOverflow(const IColumn & src, size_t start,
|
|
size_t length, size_t max_dictionary_size) = 0;
|
|
|
|
/// Appends data located in specified memory chunk if it is possible (throws an exception if it cannot be implemented).
|
|
/// Is used to optimize some computations (in aggregation, for example).
|
|
/// Parameter length could be ignored if column values have fixed size.
|
|
virtual size_t uniqueInsertData(const char * pos, size_t length) = 0;
|
|
|
|
virtual size_t getDefaultValueIndex() const = 0; /// Nullable ? getNullValueIndex : getNestedTypeDefaultValueIndex
|
|
virtual size_t getNullValueIndex() const = 0; /// Throws if not nullable.
|
|
virtual size_t getNestedTypeDefaultValueIndex() const = 0; /// removeNullable()->getDefault() value index
|
|
virtual bool canContainNulls() const = 0;
|
|
|
|
virtual size_t uniqueDeserializeAndInsertFromArena(const char * pos, const char *& new_pos) = 0;
|
|
|
|
/// Returns dictionary hash which is sipHash is applied to each row of nested column.
|
|
virtual UInt128 getHash() const = 0;
|
|
|
|
const char * getFamilyName() const override { return "ColumnUnique"; }
|
|
|
|
void insert(const Field &) override
|
|
{
|
|
throw Exception("Method insert is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
void insertRangeFrom(const IColumn &, size_t, size_t) override
|
|
{
|
|
throw Exception("Method insertRangeFrom is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
void insertData(const char *, size_t) override
|
|
{
|
|
throw Exception("Method insertData is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
void insertDefault() override
|
|
{
|
|
throw Exception("Method insertDefault is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
void popBack(size_t) override
|
|
{
|
|
throw Exception("Method popBack is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
void gather(ColumnGathererStream &) override
|
|
{
|
|
throw Exception("Method gather is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
const char * deserializeAndInsertFromArena(const char *) override
|
|
{
|
|
throw Exception("Method deserializeAndInsertFromArena is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
ColumnPtr index(const IColumn &, size_t) const override
|
|
{
|
|
throw Exception("Method index is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
ColumnPtr cut(size_t, size_t) const override
|
|
{
|
|
throw Exception("Method cut is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
ColumnPtr filter(const IColumn::Filter &, ssize_t) const override
|
|
{
|
|
throw Exception("Method filter is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
ColumnPtr permute(const IColumn::Permutation &, size_t) const override
|
|
{
|
|
throw Exception("Method permute is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
ColumnPtr replicate(const IColumn::Offsets &) const override
|
|
{
|
|
throw Exception("Method replicate is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
void getPermutation(bool, size_t, int, IColumn::Permutation &) const override
|
|
{
|
|
throw Exception("Method getPermutation is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
std::vector<MutableColumnPtr> scatter(IColumn::ColumnIndex, const IColumn::Selector &) const override
|
|
{
|
|
throw Exception("Method scatter is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
|
|
void updateWeakHash32(WeakHash32 &) const override
|
|
{
|
|
throw Exception("Method updateWeakHash32 is not supported for ColumnUnique.", ErrorCodes::NOT_IMPLEMENTED);
|
|
}
|
|
};
|
|
|
|
using ColumnUniquePtr = IColumnUnique::ColumnUniquePtr;
|
|
using MutableColumnUniquePtr = IColumnUnique::MutableColumnUniquePtr;
|
|
|
|
}
|