mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
60 lines
1.7 KiB
C++
60 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include <Common/memcmpSmall.h>
|
|
#include <Columns/ColumnString.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int LOGICAL_ERROR;
|
|
}
|
|
|
|
|
|
template <bool negative = false>
|
|
struct EmptyImpl
|
|
{
|
|
/// If the function will return constant value for FixedString data type.
|
|
static constexpr auto is_fixed_to_constant = false;
|
|
|
|
static void vector(const ColumnString::Chars & /*data*/, const ColumnString::Offsets & offsets, PaddedPODArray<UInt8> & res)
|
|
{
|
|
size_t size = offsets.size();
|
|
ColumnString::Offset prev_offset = 1;
|
|
for (size_t i = 0; i < size; ++i)
|
|
{
|
|
res[i] = negative ^ (offsets[i] == prev_offset);
|
|
prev_offset = offsets[i] + 1;
|
|
}
|
|
}
|
|
|
|
/// Only make sense if is_fixed_to_constant.
|
|
static void vectorFixedToConstant(const ColumnString::Chars & /*data*/, size_t /*n*/, UInt8 & /*res*/)
|
|
{
|
|
throw Exception("Logical error: 'vectorFixedToConstant method' is called", ErrorCodes::LOGICAL_ERROR);
|
|
}
|
|
|
|
static void vectorFixedToVector(const ColumnString::Chars & data, size_t n, PaddedPODArray<UInt8> & res)
|
|
{
|
|
size_t size = data.size() / n;
|
|
for (size_t i = 0; i < size; ++i)
|
|
res[i] = negative ^ memoryIsZeroSmallAllowOverflow15(data.data() + i * n, n);
|
|
}
|
|
|
|
static void array(const ColumnString::Offsets & offsets, PaddedPODArray<UInt8> & res)
|
|
{
|
|
size_t size = offsets.size();
|
|
ColumnString::Offset prev_offset = 0;
|
|
for (size_t i = 0; i < size; ++i)
|
|
{
|
|
res[i] = negative ^ (offsets[i] == prev_offset);
|
|
prev_offset = offsets[i];
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|