2011-08-22 01:01:01 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
#include <Columns/ColumnsNumber.h>
|
|
|
|
#include <Columns/ColumnConst.h>
|
2017-07-13 20:58:19 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
#include <Functions/IFunction.h>
|
|
|
|
#include <Functions/FunctionsArithmetic.h>
|
2017-07-21 06:35:58 +00:00
|
|
|
#include <Functions/FunctionHelpers.h>
|
2017-07-23 08:40:43 +00:00
|
|
|
#include <type_traits>
|
2011-08-22 01:01:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2017-06-13 02:06:53 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-27 15:45:25 +00:00
|
|
|
/** Functions are logical links: and, or, not, xor.
|
|
|
|
* Accept any numeric types, return a UInt8 containing 0 or 1.
|
2011-08-22 01:01:01 +00:00
|
|
|
*/
|
|
|
|
|
2017-09-15 12:16:12 +00:00
|
|
|
template <typename B>
|
2011-08-22 01:01:01 +00:00
|
|
|
struct AndImpl
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
static inline bool isSaturable()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isSaturatedValue(UInt8 a)
|
|
|
|
{
|
|
|
|
return !a;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline UInt8 apply(UInt8 a, B b)
|
|
|
|
{
|
|
|
|
return a && b;
|
|
|
|
}
|
2011-08-22 01:01:01 +00:00
|
|
|
};
|
|
|
|
|
2017-09-15 12:16:12 +00:00
|
|
|
template <typename B>
|
2011-08-22 01:01:01 +00:00
|
|
|
struct OrImpl
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
static inline bool isSaturable()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isSaturatedValue(UInt8 a)
|
|
|
|
{
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline UInt8 apply(UInt8 a, B b)
|
|
|
|
{
|
|
|
|
return a || b;
|
|
|
|
}
|
2014-02-13 10:24:56 +00:00
|
|
|
};
|
2011-08-22 01:01:01 +00:00
|
|
|
|
2017-09-15 12:16:12 +00:00
|
|
|
template <typename B>
|
2014-02-13 10:24:56 +00:00
|
|
|
struct XorImpl
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
static inline bool isSaturable()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-02 02:47:12 +00:00
|
|
|
static inline bool isSaturatedValue(UInt8)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline UInt8 apply(UInt8 a, B b)
|
|
|
|
{
|
|
|
|
return (!a) != (!b);
|
|
|
|
}
|
2014-02-13 10:24:56 +00:00
|
|
|
};
|
2011-08-22 01:01:01 +00:00
|
|
|
|
2017-09-15 12:16:12 +00:00
|
|
|
template <typename A>
|
2014-02-13 10:24:56 +00:00
|
|
|
struct NotImpl
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
using ResultType = UInt8;
|
2011-08-22 01:01:01 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
static inline UInt8 apply(A a)
|
|
|
|
{
|
|
|
|
return !a;
|
|
|
|
}
|
2011-08-22 01:01:01 +00:00
|
|
|
};
|
|
|
|
|
2014-02-13 10:24:56 +00:00
|
|
|
|
2016-05-28 10:35:44 +00:00
|
|
|
using UInt8Container = ColumnUInt8::Container_t;
|
|
|
|
using UInt8ColumnPtrs = std::vector<const ColumnUInt8 *>;
|
2014-02-13 10:24:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
template <typename Op, size_t N>
|
|
|
|
struct AssociativeOperationImpl
|
2011-08-22 01:01:01 +00:00
|
|
|
{
|
2017-05-27 15:45:25 +00:00
|
|
|
/// Erases the N last columns from `in` (if there are less, then all) and puts into `result` their combination.
|
2017-09-16 22:24:48 +00:00
|
|
|
static void NO_INLINE execute(UInt8ColumnPtrs & in, UInt8Container & result)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
if (N > in.size())
|
|
|
|
{
|
|
|
|
AssociativeOperationImpl<Op, N - 1>::execute(in, result);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
AssociativeOperationImpl<Op, N> operation(in);
|
|
|
|
in.erase(in.end() - N, in.end());
|
|
|
|
|
|
|
|
size_t n = result.size();
|
|
|
|
for (size_t i = 0; i < n; ++i)
|
|
|
|
{
|
|
|
|
result[i] = operation.apply(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const UInt8Container & vec;
|
|
|
|
AssociativeOperationImpl<Op, N - 1> continuation;
|
|
|
|
|
2017-05-27 15:45:25 +00:00
|
|
|
/// Remembers the last N columns from `in`.
|
2017-04-01 07:20:54 +00:00
|
|
|
AssociativeOperationImpl(UInt8ColumnPtrs & in)
|
|
|
|
: vec(in[in.size() - N]->getData()), continuation(in) {}
|
|
|
|
|
2017-05-27 15:45:25 +00:00
|
|
|
/// Returns a combination of values in the i-th row of all columns stored in the constructor.
|
2017-04-01 07:20:54 +00:00
|
|
|
inline UInt8 apply(size_t i) const
|
|
|
|
{
|
|
|
|
if (Op::isSaturable())
|
|
|
|
{
|
|
|
|
UInt8 a = vec[i];
|
|
|
|
return Op::isSaturatedValue(a) ? a : continuation.apply(i);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return Op::apply(vec[i], continuation.apply(i));
|
|
|
|
}
|
|
|
|
}
|
2011-08-22 01:01:01 +00:00
|
|
|
};
|
|
|
|
|
2014-02-13 10:24:56 +00:00
|
|
|
template <typename Op>
|
|
|
|
struct AssociativeOperationImpl<Op, 1>
|
2011-08-22 01:01:01 +00:00
|
|
|
{
|
2017-12-02 02:47:12 +00:00
|
|
|
static void execute(UInt8ColumnPtrs &, UInt8Container &)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
throw Exception("Logical error: AssociativeOperationImpl<Op, 1>::execute called", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
}
|
2011-08-22 01:01:01 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const UInt8Container & vec;
|
2014-02-13 10:24:56 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
AssociativeOperationImpl(UInt8ColumnPtrs & in)
|
|
|
|
: vec(in[in.size() - 1]->getData()) {}
|
2014-02-13 10:24:56 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
inline UInt8 apply(size_t i) const
|
|
|
|
{
|
|
|
|
return vec[i];
|
|
|
|
}
|
2011-08-22 01:01:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-02-13 10:24:56 +00:00
|
|
|
template <template <typename> class Impl, typename Name>
|
|
|
|
class FunctionAnyArityLogical : public IFunction
|
2011-08-22 01:01:01 +00:00
|
|
|
{
|
2014-11-12 17:23:26 +00:00
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
static constexpr auto name = Name::name;
|
2017-12-02 02:47:12 +00:00
|
|
|
static FunctionPtr create(const Context &) { return std::make_shared<FunctionAnyArityLogical>(); };
|
2014-11-12 17:23:26 +00:00
|
|
|
|
2011-08-22 01:01:01 +00:00
|
|
|
private:
|
2017-12-13 01:27:53 +00:00
|
|
|
bool extractConstColumns(MutableColumnRawPtrs & in, UInt8 & res)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
bool has_res = false;
|
|
|
|
for (int i = static_cast<int>(in.size()) - 1; i >= 0; --i)
|
|
|
|
{
|
2017-12-09 10:14:45 +00:00
|
|
|
if (in[i]->isColumnConst())
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
Field val = (*in[i])[0];
|
|
|
|
UInt8 x = !!val.get<UInt64>();
|
|
|
|
if (has_res)
|
|
|
|
{
|
|
|
|
res = Impl<UInt8>::apply(res, x);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
res = x;
|
|
|
|
has_res = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
in.erase(in.begin() + i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return has_res;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
bool convertTypeToUInt8(const IColumn * column, UInt8Container & res)
|
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
auto col = checkAndGetColumn<ColumnVector<T>>(column);
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!col)
|
|
|
|
return false;
|
|
|
|
const typename ColumnVector<T>::Container_t & vec = col->getData();
|
|
|
|
size_t n = res.size();
|
|
|
|
for (size_t i = 0; i < n; ++i)
|
|
|
|
{
|
|
|
|
res[i] = !!vec[i];
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void convertToUInt8(const IColumn * column, UInt8Container & res)
|
|
|
|
{
|
2017-07-24 04:14:35 +00:00
|
|
|
if (!convertTypeToUInt8< Int8 >(column, res) &&
|
|
|
|
!convertTypeToUInt8< Int16>(column, res) &&
|
|
|
|
!convertTypeToUInt8< Int32>(column, res) &&
|
|
|
|
!convertTypeToUInt8< Int64>(column, res) &&
|
|
|
|
!convertTypeToUInt8< UInt16>(column, res) &&
|
|
|
|
!convertTypeToUInt8< UInt32>(column, res) &&
|
|
|
|
!convertTypeToUInt8< UInt64>(column, res) &&
|
|
|
|
!convertTypeToUInt8<Float32>(column, res) &&
|
|
|
|
!convertTypeToUInt8<Float64>(column, res))
|
2017-04-01 07:20:54 +00:00
|
|
|
throw Exception("Unexpected type of column: " + column->getName(), ErrorCodes::ILLEGAL_COLUMN);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
bool executeUInt8Type(const UInt8Container & uint8_vec, IColumn * column, UInt8Container & res)
|
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
auto col = checkAndGetColumn<ColumnVector<T>>(column);
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!col)
|
|
|
|
return false;
|
|
|
|
const typename ColumnVector<T>::Container_t & other_vec = col->getData();
|
|
|
|
size_t n = res.size();
|
|
|
|
for (size_t i = 0; i < n; ++i)
|
|
|
|
{
|
|
|
|
res[i] = Impl<T>::apply(uint8_vec[i], other_vec[i]);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void executeUInt8Other(const UInt8Container & uint8_vec, IColumn * column, UInt8Container & res)
|
|
|
|
{
|
2017-07-24 04:14:35 +00:00
|
|
|
if (!executeUInt8Type< Int8 >(uint8_vec, column, res) &&
|
|
|
|
!executeUInt8Type< Int16>(uint8_vec, column, res) &&
|
|
|
|
!executeUInt8Type< Int32>(uint8_vec, column, res) &&
|
|
|
|
!executeUInt8Type< Int64>(uint8_vec, column, res) &&
|
|
|
|
!executeUInt8Type< UInt16>(uint8_vec, column, res) &&
|
|
|
|
!executeUInt8Type< UInt32>(uint8_vec, column, res) &&
|
|
|
|
!executeUInt8Type< UInt64>(uint8_vec, column, res) &&
|
|
|
|
!executeUInt8Type<Float32>(uint8_vec, column, res) &&
|
|
|
|
!executeUInt8Type<Float64>(uint8_vec, column, res))
|
2017-04-01 07:20:54 +00:00
|
|
|
throw Exception("Unexpected type of column: " + column->getName(), ErrorCodes::ILLEGAL_COLUMN);
|
|
|
|
}
|
2014-02-13 10:24:56 +00:00
|
|
|
|
2011-08-22 01:01:01 +00:00
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
String getName() const override
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isVariadic() const override { return true; }
|
|
|
|
size_t getNumberOfArguments() const override { return 0; }
|
|
|
|
|
2017-05-27 15:45:25 +00:00
|
|
|
/// Get result types by argument types. If the function does not apply to these arguments, throw an exception.
|
2017-04-01 07:20:54 +00:00
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
|
|
{
|
|
|
|
if (arguments.size() < 2)
|
|
|
|
throw Exception("Number of arguments for function " + getName() + " doesn't match: passed "
|
|
|
|
+ toString(arguments.size()) + ", should be at least 2.",
|
|
|
|
ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < arguments.size(); ++i)
|
|
|
|
{
|
2017-12-09 06:32:22 +00:00
|
|
|
if (!arguments[i]->isNumber())
|
2017-04-01 07:20:54 +00:00
|
|
|
throw Exception("Illegal type ("
|
|
|
|
+ arguments[i]->getName()
|
|
|
|
+ ") of " + toString(i + 1) + " argument of function " + getName(),
|
|
|
|
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::make_shared<DataTypeUInt8>();
|
|
|
|
}
|
|
|
|
|
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result) override
|
|
|
|
{
|
2017-12-13 01:27:53 +00:00
|
|
|
MutableColumnRawPtrs in(arguments.size());
|
2017-04-01 07:20:54 +00:00
|
|
|
for (size_t i = 0; i < arguments.size(); ++i)
|
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
in[i] = block.getByPosition(arguments[i]).column.get();
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
size_t n = in[0]->size();
|
|
|
|
|
2017-05-27 15:45:25 +00:00
|
|
|
/// Combine all constant columns into a single value.
|
2017-04-01 07:20:54 +00:00
|
|
|
UInt8 const_val = 0;
|
|
|
|
bool has_consts = extractConstColumns(in, const_val);
|
|
|
|
|
2017-05-27 15:45:25 +00:00
|
|
|
// If this value uniquely determines the result, return it.
|
2017-04-01 07:20:54 +00:00
|
|
|
if (has_consts && (in.empty() || Impl<UInt8>::apply(const_val, 0) == Impl<UInt8>::apply(const_val, 1)))
|
|
|
|
{
|
|
|
|
if (!in.empty())
|
|
|
|
const_val = Impl<UInt8>::apply(const_val, 0);
|
2017-12-10 22:44:04 +00:00
|
|
|
auto col_res = DataTypeUInt8().createColumnConst(n, toField(const_val));
|
2017-07-21 06:35:58 +00:00
|
|
|
block.getByPosition(result).column = col_res;
|
2017-04-01 07:20:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-27 15:45:25 +00:00
|
|
|
/// If this value is a neutral element, let's forget about it.
|
2017-04-01 07:20:54 +00:00
|
|
|
if (has_consts && Impl<UInt8>::apply(const_val, 0) == 0 && Impl<UInt8>::apply(const_val, 1) == 1)
|
|
|
|
has_consts = false;
|
|
|
|
|
2017-12-14 01:43:19 +00:00
|
|
|
auto col_res = ColumnUInt8::create();
|
2017-07-21 06:35:58 +00:00
|
|
|
block.getByPosition(result).column = col_res;
|
2017-04-01 07:20:54 +00:00
|
|
|
UInt8Container & vec_res = col_res->getData();
|
|
|
|
|
|
|
|
if (has_consts)
|
|
|
|
{
|
|
|
|
vec_res.assign(n, const_val);
|
|
|
|
in.push_back(col_res.get());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
vec_res.resize(n);
|
|
|
|
}
|
|
|
|
|
2017-05-27 15:45:25 +00:00
|
|
|
/// Divide the input columns into UInt8 and the rest. The first will be processed more efficiently.
|
|
|
|
/// col_res at each moment will either be at the end of uint8_in, or not contained in uint8_in.
|
2017-04-01 07:20:54 +00:00
|
|
|
UInt8ColumnPtrs uint8_in;
|
2017-12-13 01:27:53 +00:00
|
|
|
MutableColumnRawPtrs other_in;
|
2017-04-01 07:20:54 +00:00
|
|
|
for (IColumn * column : in)
|
|
|
|
{
|
|
|
|
if (auto uint8_column = typeid_cast<const ColumnUInt8 *>(column))
|
|
|
|
uint8_in.push_back(uint8_column);
|
|
|
|
else
|
|
|
|
other_in.push_back(column);
|
|
|
|
}
|
|
|
|
|
2017-05-27 15:45:25 +00:00
|
|
|
/// You need at least one column in uint8_in, so that you can combine columns from other_in.
|
2017-04-01 07:20:54 +00:00
|
|
|
if (uint8_in.empty())
|
|
|
|
{
|
|
|
|
if (other_in.empty())
|
|
|
|
throw Exception("Hello, I'm a bug", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
|
|
|
|
convertToUInt8(other_in.back(), vec_res);
|
|
|
|
other_in.pop_back();
|
|
|
|
uint8_in.push_back(col_res.get());
|
|
|
|
}
|
|
|
|
|
2017-05-27 15:45:25 +00:00
|
|
|
/// Effectively combine all the columns of the correct type.
|
2017-04-01 07:20:54 +00:00
|
|
|
while (uint8_in.size() > 1)
|
|
|
|
{
|
2017-05-27 15:45:25 +00:00
|
|
|
/// With a large block size, combining 6 columns per pass is the fastest.
|
|
|
|
/// When small - more, is faster.
|
2017-04-01 07:20:54 +00:00
|
|
|
AssociativeOperationImpl<Impl<UInt8>, 10>::execute(uint8_in, vec_res);
|
|
|
|
uint8_in.push_back(col_res.get());
|
|
|
|
}
|
|
|
|
|
2017-05-27 15:45:25 +00:00
|
|
|
/// Add all the columns of the wrong type one at a time.
|
2017-04-01 07:20:54 +00:00
|
|
|
while (!other_in.empty())
|
|
|
|
{
|
|
|
|
executeUInt8Other(uint8_in[0]->getData(), other_in.back(), vec_res);
|
|
|
|
other_in.pop_back();
|
|
|
|
uint8_in[0] = col_res.get();
|
|
|
|
}
|
|
|
|
|
2017-05-27 15:45:25 +00:00
|
|
|
/// This is possible if there is exactly one non-constant among the arguments, and it is of type UInt8.
|
2017-04-01 07:20:54 +00:00
|
|
|
if (uint8_in[0] != col_res.get())
|
|
|
|
{
|
|
|
|
vec_res.assign(uint8_in[0]->getData());
|
|
|
|
}
|
|
|
|
}
|
2011-08-22 01:01:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
template <template <typename> class Impl, typename Name>
|
|
|
|
class FunctionUnaryLogical : public IFunction
|
|
|
|
{
|
2014-11-12 17:23:26 +00:00
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
static constexpr auto name = Name::name;
|
2017-12-02 02:47:12 +00:00
|
|
|
static FunctionPtr create(const Context &) { return std::make_shared<FunctionUnaryLogical>(); };
|
2011-08-22 01:01:01 +00:00
|
|
|
|
2014-11-12 17:23:26 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
template <typename T>
|
|
|
|
bool executeType(Block & block, const ColumnNumbers & arguments, size_t result)
|
|
|
|
{
|
2017-07-21 06:35:58 +00:00
|
|
|
if (auto col = checkAndGetColumn<ColumnVector<T>>(block.getByPosition(arguments[0]).column.get()))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2017-12-14 01:43:19 +00:00
|
|
|
auto col_res = ColumnUInt8::create();
|
2017-07-21 06:35:58 +00:00
|
|
|
block.getByPosition(result).column = col_res;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
typename ColumnUInt8::Container_t & vec_res = col_res->getData();
|
|
|
|
vec_res.resize(col->getData().size());
|
2017-07-21 06:35:58 +00:00
|
|
|
UnaryOperationImpl<T, Impl<T>>::vector(col->getData(), vec_res);
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2011-08-22 01:01:01 +00:00
|
|
|
|
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
String getName() const override
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t getNumberOfArguments() const override { return 1; }
|
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
|
|
|
{
|
2017-12-09 06:32:22 +00:00
|
|
|
if (!arguments[0]->isNumber())
|
2017-04-01 07:20:54 +00:00
|
|
|
throw Exception("Illegal type ("
|
|
|
|
+ arguments[0]->getName()
|
|
|
|
+ ") of argument of function " + getName(),
|
|
|
|
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
|
|
|
|
|
|
|
return std::make_shared<DataTypeUInt8>();
|
|
|
|
}
|
|
|
|
|
2017-07-23 08:40:43 +00:00
|
|
|
bool useDefaultImplementationForConstants() const override { return true; }
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result) override
|
|
|
|
{
|
2017-07-24 04:14:35 +00:00
|
|
|
if (!( executeType<UInt8>(block, arguments, result)
|
|
|
|
|| executeType<UInt16>(block, arguments, result)
|
|
|
|
|| executeType<UInt32>(block, arguments, result)
|
|
|
|
|| executeType<UInt64>(block, arguments, result)
|
|
|
|
|| executeType<Int8>(block, arguments, result)
|
|
|
|
|| executeType<Int16>(block, arguments, result)
|
|
|
|
|| executeType<Int32>(block, arguments, result)
|
|
|
|
|| executeType<Int64>(block, arguments, result)
|
|
|
|
|| executeType<Float32>(block, arguments, result)
|
|
|
|
|| executeType<Float64>(block, arguments, result)))
|
2017-07-21 06:35:58 +00:00
|
|
|
throw Exception("Illegal column " + block.getByPosition(arguments[0]).column->getName()
|
2017-04-01 07:20:54 +00:00
|
|
|
+ " of argument of function " + getName(),
|
|
|
|
ErrorCodes::ILLEGAL_COLUMN);
|
|
|
|
}
|
2011-08-22 01:01:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-07-23 08:40:43 +00:00
|
|
|
struct NameAnd { static constexpr auto name = "and"; };
|
|
|
|
struct NameOr { static constexpr auto name = "or"; };
|
|
|
|
struct NameXor { static constexpr auto name = "xor"; };
|
|
|
|
struct NameNot { static constexpr auto name = "not"; };
|
2011-08-22 01:01:01 +00:00
|
|
|
|
2017-07-23 08:40:43 +00:00
|
|
|
using FunctionAnd = FunctionAnyArityLogical<AndImpl, NameAnd>;
|
|
|
|
using FunctionOr = FunctionAnyArityLogical<OrImpl, NameOr>;
|
|
|
|
using FunctionXor = FunctionAnyArityLogical<XorImpl, NameXor>;
|
|
|
|
using FunctionNot = FunctionUnaryLogical<NotImpl, NameNot>;
|
2011-08-22 01:01:01 +00:00
|
|
|
|
|
|
|
}
|