2011-08-09 15:57:33 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
2017-03-12 10:13:45 +00:00
|
|
|
|
#include <DB/DataTypes/DataTypesNumber.h>
|
2014-09-08 10:46:30 +00:00
|
|
|
|
#include <DB/DataTypes/DataTypeDate.h>
|
|
|
|
|
#include <DB/DataTypes/DataTypeDateTime.h>
|
2017-03-12 10:13:45 +00:00
|
|
|
|
#include <DB/Columns/ColumnVector.h>
|
|
|
|
|
#include <DB/Columns/ColumnConst.h>
|
2011-08-09 15:57:33 +00:00
|
|
|
|
#include <DB/Functions/IFunction.h>
|
|
|
|
|
#include <DB/Functions/NumberTraits.h>
|
2017-01-13 19:45:18 +00:00
|
|
|
|
#include <DB/Functions/AccurateComparison.h>
|
2015-11-29 08:06:29 +00:00
|
|
|
|
#include <DB/Core/FieldVisitors.h>
|
2011-08-09 15:57:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
2016-01-12 02:21:15 +00:00
|
|
|
|
namespace ErrorCodes
|
|
|
|
|
{
|
|
|
|
|
extern const int ILLEGAL_DIVISION;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-03-20 19:16:02 +00:00
|
|
|
|
/** Arithmetic operations: +, -, *, /, %,
|
|
|
|
|
* intDiv (integer division), unary minus.
|
|
|
|
|
* Bitwise operations: |, &, ^, ~.
|
|
|
|
|
* Etc.
|
2011-08-09 15:57:33 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template<typename A, typename B, typename Op, typename ResultType_ = typename Op::ResultType>
|
2014-08-17 02:13:40 +00:00
|
|
|
|
struct BinaryOperationImplBase
|
2011-08-09 15:57:33 +00:00
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = ResultType_;
|
2012-12-20 20:01:18 +00:00
|
|
|
|
|
2016-04-15 00:33:21 +00:00
|
|
|
|
static void vector_vector(const PaddedPODArray<A> & a, const PaddedPODArray<B> & b, PaddedPODArray<ResultType> & c)
|
2011-08-09 15:57:33 +00:00
|
|
|
|
{
|
|
|
|
|
size_t size = a.size();
|
|
|
|
|
for (size_t i = 0; i < size; ++i)
|
2014-09-08 10:46:30 +00:00
|
|
|
|
c[i] = Op::template apply<ResultType>(a[i], b[i]);
|
2011-08-09 15:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-15 00:33:21 +00:00
|
|
|
|
static void vector_constant(const PaddedPODArray<A> & a, B b, PaddedPODArray<ResultType> & c)
|
2011-08-09 15:57:33 +00:00
|
|
|
|
{
|
|
|
|
|
size_t size = a.size();
|
|
|
|
|
for (size_t i = 0; i < size; ++i)
|
2014-09-08 10:46:30 +00:00
|
|
|
|
c[i] = Op::template apply<ResultType>(a[i], b);
|
2011-08-09 15:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-15 00:33:21 +00:00
|
|
|
|
static void constant_vector(A a, const PaddedPODArray<B> & b, PaddedPODArray<ResultType> & c)
|
2011-08-20 23:56:07 +00:00
|
|
|
|
{
|
|
|
|
|
size_t size = b.size();
|
|
|
|
|
for (size_t i = 0; i < size; ++i)
|
2014-09-08 10:46:30 +00:00
|
|
|
|
c[i] = Op::template apply<ResultType>(a, b[i]);
|
2011-08-20 23:56:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-08-09 15:57:33 +00:00
|
|
|
|
static void constant_constant(A a, B b, ResultType & c)
|
|
|
|
|
{
|
2014-09-08 10:46:30 +00:00
|
|
|
|
c = Op::template apply<ResultType>(a, b);
|
2011-08-09 15:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template<typename A, typename B, typename Op, typename ResultType = typename Op::ResultType>
|
|
|
|
|
struct BinaryOperationImpl : BinaryOperationImplBase<A, B, Op, ResultType>
|
2014-08-17 02:13:40 +00:00
|
|
|
|
{
|
|
|
|
|
};
|
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
|
2012-12-20 20:01:18 +00:00
|
|
|
|
template<typename A, typename Op>
|
|
|
|
|
struct UnaryOperationImpl
|
2011-08-09 17:24:17 +00:00
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename Op::ResultType;
|
2011-08-09 17:24:17 +00:00
|
|
|
|
|
2016-04-15 00:33:21 +00:00
|
|
|
|
static void vector(const PaddedPODArray<A> & a, PaddedPODArray<ResultType> & c)
|
2011-08-09 17:24:17 +00:00
|
|
|
|
{
|
|
|
|
|
size_t size = a.size();
|
|
|
|
|
for (size_t i = 0; i < size; ++i)
|
2012-12-20 20:01:18 +00:00
|
|
|
|
c[i] = Op::apply(a[i]);
|
2011-08-09 17:24:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-12-20 20:01:18 +00:00
|
|
|
|
static void constant(A a, ResultType & c)
|
2011-08-09 17:24:17 +00:00
|
|
|
|
{
|
2012-12-20 20:01:18 +00:00
|
|
|
|
c = Op::apply(a);
|
2011-08-09 17:24:17 +00:00
|
|
|
|
}
|
2012-12-20 20:01:18 +00:00
|
|
|
|
};
|
2011-08-09 17:24:17 +00:00
|
|
|
|
|
2011-08-20 23:56:07 +00:00
|
|
|
|
|
2012-12-20 20:01:18 +00:00
|
|
|
|
template<typename A, typename B>
|
|
|
|
|
struct PlusImpl
|
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfAdditionMultiplication<A, B>::Type;
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
2011-08-09 17:24:17 +00:00
|
|
|
|
{
|
2012-12-20 20:01:18 +00:00
|
|
|
|
/// Далее везде, static_cast - чтобы не было неправильного результата в выражениях вида Int64 c = UInt32(a) * Int32(-1).
|
2014-09-08 10:46:30 +00:00
|
|
|
|
return static_cast<Result>(a) + b;
|
2011-08-09 17:24:17 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
|
2011-08-09 17:24:17 +00:00
|
|
|
|
template<typename A, typename B>
|
2012-12-20 20:01:18 +00:00
|
|
|
|
struct MultiplyImpl
|
2011-08-09 17:24:17 +00:00
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfAdditionMultiplication<A, B>::Type;
|
2011-08-09 17:24:17 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
2011-08-09 17:24:17 +00:00
|
|
|
|
{
|
2014-09-08 10:46:30 +00:00
|
|
|
|
return static_cast<Result>(a) * b;
|
2011-08-09 17:24:17 +00:00
|
|
|
|
}
|
2012-12-20 20:01:18 +00:00
|
|
|
|
};
|
2011-08-09 17:24:17 +00:00
|
|
|
|
|
2012-12-20 20:01:18 +00:00
|
|
|
|
template<typename A, typename B>
|
|
|
|
|
struct MinusImpl
|
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfSubtraction<A, B>::Type;
|
2011-08-20 23:56:07 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
2011-08-09 17:24:17 +00:00
|
|
|
|
{
|
2014-09-08 10:46:30 +00:00
|
|
|
|
return static_cast<Result>(a) - b;
|
2011-08-09 17:24:17 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template<typename A, typename B>
|
|
|
|
|
struct DivideFloatingImpl
|
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfFloatingPointDivision<A, B>::Type;
|
2011-08-09 17:24:17 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
2011-08-09 17:24:17 +00:00
|
|
|
|
{
|
2014-09-08 10:46:30 +00:00
|
|
|
|
return static_cast<Result>(a) / b;
|
2011-08-09 17:24:17 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2012-12-18 20:07:26 +00:00
|
|
|
|
|
2013-06-07 22:12:58 +00:00
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wsign-compare"
|
|
|
|
|
|
2013-02-16 21:23:55 +00:00
|
|
|
|
template <typename A, typename B>
|
|
|
|
|
inline void throwIfDivisionLeadsToFPE(A a, B b)
|
2012-12-18 20:07:26 +00:00
|
|
|
|
{
|
2013-02-16 21:23:55 +00:00
|
|
|
|
/// Возможно, лучше вместо проверок использовать siglongjmp?
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2013-02-16 21:23:55 +00:00
|
|
|
|
if (unlikely(b == 0))
|
|
|
|
|
throw Exception("Division by zero", ErrorCodes::ILLEGAL_DIVISION);
|
|
|
|
|
|
|
|
|
|
/// http://avva.livejournal.com/2548306.html
|
2014-01-08 16:33:28 +00:00
|
|
|
|
if (unlikely(std::is_signed<A>::value && std::is_signed<B>::value && a == std::numeric_limits<A>::min() && b == -1))
|
2013-02-16 21:23:55 +00:00
|
|
|
|
throw Exception("Division of minimal signed number by minus one", ErrorCodes::ILLEGAL_DIVISION);
|
2013-06-07 22:12:58 +00:00
|
|
|
|
}
|
2013-06-07 17:32:12 +00:00
|
|
|
|
|
2014-11-21 14:28:39 +00:00
|
|
|
|
template <typename A, typename B>
|
|
|
|
|
inline bool divisionLeadsToFPE(A a, B b)
|
|
|
|
|
{
|
|
|
|
|
/// Возможно, лучше вместо проверок использовать siglongjmp?
|
|
|
|
|
|
|
|
|
|
if (unlikely(b == 0))
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
/// http://avva.livejournal.com/2548306.html
|
|
|
|
|
if (unlikely(std::is_signed<A>::value && std::is_signed<B>::value && a == std::numeric_limits<A>::min() && b == -1))
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-06-07 17:32:12 +00:00
|
|
|
|
#pragma GCC diagnostic pop
|
2013-06-07 22:12:58 +00:00
|
|
|
|
|
2012-12-18 20:07:26 +00:00
|
|
|
|
|
2011-08-09 17:24:17 +00:00
|
|
|
|
template<typename A, typename B>
|
|
|
|
|
struct DivideIntegralImpl
|
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfIntegerDivision<A, B>::Type;
|
2011-08-09 17:24:17 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
2011-08-09 17:24:17 +00:00
|
|
|
|
{
|
2013-02-16 21:23:55 +00:00
|
|
|
|
throwIfDivisionLeadsToFPE(a, b);
|
2016-08-19 03:17:53 +00:00
|
|
|
|
return a / b;
|
2011-08-09 17:24:17 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2014-11-21 14:28:39 +00:00
|
|
|
|
template<typename A, typename B>
|
|
|
|
|
struct DivideIntegralOrZeroImpl
|
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfIntegerDivision<A, B>::Type;
|
2014-11-21 14:28:39 +00:00
|
|
|
|
|
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
|
|
|
|
{
|
2016-08-19 03:17:53 +00:00
|
|
|
|
return unlikely(divisionLeadsToFPE(a, b)) ? 0 : a / b;
|
2014-11-21 14:28:39 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2011-08-09 17:24:17 +00:00
|
|
|
|
template<typename A, typename B>
|
|
|
|
|
struct ModuloImpl
|
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfModulo<A, B>::Type;
|
2011-08-09 17:24:17 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
2011-08-09 17:24:17 +00:00
|
|
|
|
{
|
2013-02-16 21:23:55 +00:00
|
|
|
|
throwIfDivisionLeadsToFPE(typename NumberTraits::ToInteger<A>::Type(a), typename NumberTraits::ToInteger<A>::Type(b));
|
2012-12-20 20:01:18 +00:00
|
|
|
|
return typename NumberTraits::ToInteger<A>::Type(a)
|
2011-08-21 03:41:37 +00:00
|
|
|
|
% typename NumberTraits::ToInteger<A>::Type(b);
|
2011-08-09 17:24:17 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2012-12-20 13:41:55 +00:00
|
|
|
|
template<typename A, typename B>
|
2013-12-17 16:06:52 +00:00
|
|
|
|
struct BitAndImpl
|
2012-12-20 13:41:55 +00:00
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfBit<A, B>::Type;
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
2012-12-20 13:41:55 +00:00
|
|
|
|
{
|
2014-09-08 10:46:30 +00:00
|
|
|
|
return static_cast<Result>(a)
|
|
|
|
|
& static_cast<Result>(b);
|
2012-12-20 13:41:55 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template<typename A, typename B>
|
2013-12-17 16:06:52 +00:00
|
|
|
|
struct BitOrImpl
|
2012-12-20 13:41:55 +00:00
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfBit<A, B>::Type;
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
2012-12-20 13:41:55 +00:00
|
|
|
|
{
|
2014-09-08 10:46:30 +00:00
|
|
|
|
return static_cast<Result>(a)
|
|
|
|
|
| static_cast<Result>(b);
|
2012-12-20 13:41:55 +00:00
|
|
|
|
}
|
2012-12-20 20:01:18 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template<typename A, typename B>
|
2013-12-17 16:06:52 +00:00
|
|
|
|
struct BitXorImpl
|
2012-12-20 20:01:18 +00:00
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfBit<A, B>::Type;
|
2012-12-20 20:01:18 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
2012-12-20 13:41:55 +00:00
|
|
|
|
{
|
2014-09-08 10:46:30 +00:00
|
|
|
|
return static_cast<Result>(a)
|
|
|
|
|
^ static_cast<Result>(b);
|
2012-12-20 13:41:55 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2013-12-17 13:49:21 +00:00
|
|
|
|
template<typename A, typename B>
|
2013-12-17 16:06:52 +00:00
|
|
|
|
struct BitShiftLeftImpl
|
2013-12-17 13:49:21 +00:00
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfBit<A, B>::Type;
|
2013-12-17 13:49:21 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
2013-12-17 13:49:21 +00:00
|
|
|
|
{
|
2014-09-08 10:46:30 +00:00
|
|
|
|
return static_cast<Result>(a)
|
|
|
|
|
<< static_cast<Result>(b);
|
2013-12-17 13:49:21 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template<typename A, typename B>
|
2013-12-17 16:06:52 +00:00
|
|
|
|
struct BitShiftRightImpl
|
2013-12-17 13:49:21 +00:00
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfBit<A, B>::Type;
|
2013-12-17 13:49:21 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
2013-12-17 13:49:21 +00:00
|
|
|
|
{
|
2014-09-08 10:46:30 +00:00
|
|
|
|
return static_cast<Result>(a)
|
|
|
|
|
>> static_cast<Result>(b);
|
2013-12-17 13:49:21 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2017-03-20 19:16:02 +00:00
|
|
|
|
template<typename A, typename B>
|
|
|
|
|
struct BitRotateLeftImpl
|
|
|
|
|
{
|
|
|
|
|
using ResultType = typename NumberTraits::ResultOfBit<A, B>::Type;
|
|
|
|
|
|
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
|
|
|
|
{
|
|
|
|
|
return (static_cast<Result>(a) << static_cast<Result>(b))
|
|
|
|
|
| (static_cast<Result>(a) >> ((sizeof(Result) * 8) - static_cast<Result>(b)));
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template<typename A, typename B>
|
|
|
|
|
struct BitRotateRightImpl
|
|
|
|
|
{
|
|
|
|
|
using ResultType = typename NumberTraits::ResultOfBit<A, B>::Type;
|
|
|
|
|
|
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
|
|
|
|
{
|
|
|
|
|
return (static_cast<Result>(a) >> static_cast<Result>(b))
|
|
|
|
|
| (static_cast<Result>(a) << ((sizeof(Result) * 8) - static_cast<Result>(b)));
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2015-07-10 03:06:00 +00:00
|
|
|
|
|
2015-07-10 02:57:32 +00:00
|
|
|
|
template<typename A, typename B>
|
2017-01-13 18:15:12 +00:00
|
|
|
|
struct LeastBaseImpl
|
2015-07-10 02:57:32 +00:00
|
|
|
|
{
|
2017-01-13 18:15:12 +00:00
|
|
|
|
using ResultType = NumberTraits::ResultOfLeast<A, B>;
|
2015-07-10 02:57:32 +00:00
|
|
|
|
|
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
|
|
|
|
{
|
2015-07-10 03:06:00 +00:00
|
|
|
|
/** gcc 4.9.2 успешно векторизует цикл из этой функции. */
|
2015-07-10 02:57:32 +00:00
|
|
|
|
return static_cast<Result>(a) < static_cast<Result>(b) ? static_cast<Result>(a) : static_cast<Result>(b);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2017-01-13 19:45:18 +00:00
|
|
|
|
template<typename A, typename B>
|
2017-01-13 18:15:12 +00:00
|
|
|
|
struct LeastSpecialImpl
|
|
|
|
|
{
|
|
|
|
|
using ResultType = std::make_signed_t<A>;
|
|
|
|
|
|
|
|
|
|
template <typename Result = ResultType>
|
2017-01-13 19:45:18 +00:00
|
|
|
|
static inline Result apply(A a, B b)
|
2017-01-13 18:15:12 +00:00
|
|
|
|
{
|
2017-01-13 19:45:18 +00:00
|
|
|
|
static_assert(std::is_same<Result, ResultType>::value, "ResultType != Result");
|
|
|
|
|
return accurate::lessOp(a, b) ? static_cast<Result>(a) : static_cast<Result>(b);
|
2017-01-13 18:15:12 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template<typename A, typename B>
|
2017-01-13 19:45:18 +00:00
|
|
|
|
using LeastImpl = std::conditional_t<!NumberTraits::LeastGreatestSpecialCase<A, B>::value, LeastBaseImpl<A, B>, LeastSpecialImpl<A, B>>;
|
2017-01-13 18:15:12 +00:00
|
|
|
|
|
|
|
|
|
|
2015-07-10 02:57:32 +00:00
|
|
|
|
template<typename A, typename B>
|
2017-01-13 18:15:12 +00:00
|
|
|
|
struct GreatestBaseImpl
|
2015-07-10 02:57:32 +00:00
|
|
|
|
{
|
2017-01-13 18:15:12 +00:00
|
|
|
|
using ResultType = NumberTraits::ResultOfGreatest<A, B>;
|
2015-07-10 02:57:32 +00:00
|
|
|
|
|
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
|
static inline Result apply(A a, B b)
|
|
|
|
|
{
|
|
|
|
|
return static_cast<Result>(a) > static_cast<Result>(b) ? static_cast<Result>(a) : static_cast<Result>(b);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2017-01-13 19:45:18 +00:00
|
|
|
|
template<typename A, typename B>
|
2017-01-13 18:15:12 +00:00
|
|
|
|
struct GreatestSpecialImpl
|
|
|
|
|
{
|
|
|
|
|
using ResultType = std::make_unsigned_t<A>;
|
|
|
|
|
|
|
|
|
|
template <typename Result = ResultType>
|
2017-01-13 19:45:18 +00:00
|
|
|
|
static inline Result apply(A a, B b)
|
2017-01-13 18:15:12 +00:00
|
|
|
|
{
|
2017-01-13 19:45:18 +00:00
|
|
|
|
static_assert(std::is_same<Result, ResultType>::value, "ResultType != Result");
|
|
|
|
|
return accurate::greaterOp(a, b) ? static_cast<Result>(a) : static_cast<Result>(b);
|
2017-01-13 18:15:12 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template<typename A, typename B>
|
2017-01-13 19:45:18 +00:00
|
|
|
|
using GreatestImpl = std::conditional_t<!NumberTraits::LeastGreatestSpecialCase<A, B>::value, GreatestBaseImpl<A, B>, GreatestSpecialImpl<A, B>>;
|
2017-01-13 18:15:12 +00:00
|
|
|
|
|
|
|
|
|
|
2011-09-05 00:32:22 +00:00
|
|
|
|
template<typename A>
|
|
|
|
|
struct NegateImpl
|
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfNegate<A>::Type;
|
2011-09-05 00:32:22 +00:00
|
|
|
|
|
2012-12-20 20:01:18 +00:00
|
|
|
|
static inline ResultType apply(A a)
|
2011-09-05 00:32:22 +00:00
|
|
|
|
{
|
2014-08-09 02:29:03 +00:00
|
|
|
|
return -static_cast<ResultType>(a);
|
2011-09-05 00:32:22 +00:00
|
|
|
|
}
|
2012-12-20 20:01:18 +00:00
|
|
|
|
};
|
2011-09-05 00:32:22 +00:00
|
|
|
|
|
2012-12-20 20:01:18 +00:00
|
|
|
|
template<typename A>
|
2013-12-17 16:06:52 +00:00
|
|
|
|
struct BitNotImpl
|
2012-12-20 20:01:18 +00:00
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfBitNot<A>::Type;
|
2012-12-20 20:01:18 +00:00
|
|
|
|
|
|
|
|
|
static inline ResultType apply(A a)
|
2011-09-05 00:32:22 +00:00
|
|
|
|
{
|
2012-12-20 20:01:18 +00:00
|
|
|
|
return ~static_cast<ResultType>(a);
|
2011-09-05 00:32:22 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2014-11-28 16:09:29 +00:00
|
|
|
|
template<typename A>
|
|
|
|
|
struct AbsImpl
|
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename NumberTraits::ResultOfAbs<A>::Type;
|
2014-11-28 16:09:29 +00:00
|
|
|
|
|
|
|
|
|
template<typename T = A>
|
|
|
|
|
static inline ResultType apply(T a,
|
|
|
|
|
typename std::enable_if<std::is_integral<T>::value && std::is_signed<T>::value, void>::type * = nullptr)
|
|
|
|
|
{
|
|
|
|
|
return a < 0 ? static_cast<ResultType>(~a) + 1 : a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T = A>
|
|
|
|
|
static inline ResultType apply(T a,
|
|
|
|
|
typename std::enable_if<std::is_integral<T>::value && std::is_unsigned<T>::value, void>::type * = nullptr)
|
|
|
|
|
{
|
|
|
|
|
return static_cast<ResultType>(a);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename T = A>
|
|
|
|
|
static inline ResultType apply(T a, typename std::enable_if<std::is_floating_point<T>::value, void>::type * = nullptr)
|
|
|
|
|
{
|
|
|
|
|
return static_cast<ResultType>(std::abs(a));
|
|
|
|
|
}
|
|
|
|
|
};
|
2011-08-09 15:57:33 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
/// this one is just for convenience
|
|
|
|
|
template <bool B, typename T1, typename T2> using If = typename std::conditional<B, T1, T2>::type;
|
|
|
|
|
/// these ones for better semantics
|
|
|
|
|
template <typename T> using Then = T;
|
|
|
|
|
template <typename T> using Else = T;
|
|
|
|
|
|
|
|
|
|
/// Used to indicate undefined operation
|
2014-09-08 12:22:36 +00:00
|
|
|
|
struct InvalidType;
|
2014-09-08 10:46:30 +00:00
|
|
|
|
|
2017-03-12 10:13:45 +00:00
|
|
|
|
template <typename T>
|
|
|
|
|
struct DataTypeFromFieldType
|
|
|
|
|
{
|
|
|
|
|
using Type = DataTypeNumber<T>;
|
|
|
|
|
};
|
|
|
|
|
|
2015-07-10 02:57:32 +00:00
|
|
|
|
template <>
|
|
|
|
|
struct DataTypeFromFieldType<NumberTraits::Error>
|
|
|
|
|
{
|
|
|
|
|
using Type = InvalidType;
|
|
|
|
|
};
|
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename DataType> struct IsIntegral { static constexpr auto value = false; };
|
|
|
|
|
template <> struct IsIntegral<DataTypeUInt8> { static constexpr auto value = true; };
|
|
|
|
|
template <> struct IsIntegral<DataTypeUInt16> { static constexpr auto value = true; };
|
|
|
|
|
template <> struct IsIntegral<DataTypeUInt32> { static constexpr auto value = true; };
|
|
|
|
|
template <> struct IsIntegral<DataTypeUInt64> { static constexpr auto value = true; };
|
|
|
|
|
template <> struct IsIntegral<DataTypeInt8> { static constexpr auto value = true; };
|
|
|
|
|
template <> struct IsIntegral<DataTypeInt16> { static constexpr auto value = true; };
|
|
|
|
|
template <> struct IsIntegral<DataTypeInt32> { static constexpr auto value = true; };
|
|
|
|
|
template <> struct IsIntegral<DataTypeInt64> { static constexpr auto value = true; };
|
|
|
|
|
|
2014-09-08 12:22:36 +00:00
|
|
|
|
template <typename DataType> struct IsFloating { static constexpr auto value = false; };
|
|
|
|
|
template <> struct IsFloating<DataTypeFloat32> { static constexpr auto value = true; };
|
|
|
|
|
template <> struct IsFloating<DataTypeFloat64> { static constexpr auto value = true; };
|
|
|
|
|
|
|
|
|
|
template <typename DataType> struct IsNumeric
|
|
|
|
|
{
|
|
|
|
|
static constexpr auto value = IsIntegral<DataType>::value || IsFloating<DataType>::value;
|
|
|
|
|
};
|
|
|
|
|
|
2014-09-17 20:18:52 +00:00
|
|
|
|
template <typename DataType> struct IsDateOrDateTime { static constexpr auto value = false; };
|
|
|
|
|
template <> struct IsDateOrDateTime<DataTypeDate> { static constexpr auto value = true; };
|
|
|
|
|
template <> struct IsDateOrDateTime<DataTypeDateTime> { static constexpr auto value = true; };
|
2014-09-08 10:46:30 +00:00
|
|
|
|
|
2015-07-10 02:57:32 +00:00
|
|
|
|
/** Returns appropriate result type for binary operator on dates (or datetimes):
|
2014-09-08 10:46:30 +00:00
|
|
|
|
* Date + Integral -> Date
|
|
|
|
|
* Integral + Date -> Date
|
2014-09-08 12:22:36 +00:00
|
|
|
|
* Date - Date -> Int32
|
2014-09-08 10:46:30 +00:00
|
|
|
|
* Date - Integral -> Date
|
2015-07-10 02:57:32 +00:00
|
|
|
|
* least(Date, Date) -> Date
|
|
|
|
|
* greatest(Date, Date) -> Date
|
2014-09-08 10:46:30 +00:00
|
|
|
|
* All other operations are not defined and return InvalidType, operations on
|
|
|
|
|
* distinct date types are also undefined (e.g. DataTypeDate - DataTypeDateTime) */
|
|
|
|
|
template <template <typename, typename> class Operation, typename LeftDataType, typename RightDataType>
|
|
|
|
|
struct DateBinaryOperationTraits
|
|
|
|
|
{
|
|
|
|
|
using T0 = typename LeftDataType::FieldType;
|
|
|
|
|
using T1 = typename RightDataType::FieldType;
|
|
|
|
|
using Op = Operation<T0, T1>;
|
|
|
|
|
|
|
|
|
|
using ResultDataType =
|
|
|
|
|
If<std::is_same<Op, PlusImpl<T0, T1>>::value,
|
|
|
|
|
Then<
|
2014-09-17 20:18:52 +00:00
|
|
|
|
If<IsDateOrDateTime<LeftDataType>::value && IsIntegral<RightDataType>::value,
|
2014-09-08 10:46:30 +00:00
|
|
|
|
Then<LeftDataType>,
|
|
|
|
|
Else<
|
2014-09-17 20:18:52 +00:00
|
|
|
|
If<IsIntegral<LeftDataType>::value && IsDateOrDateTime<RightDataType>::value,
|
2014-09-08 10:46:30 +00:00
|
|
|
|
Then<RightDataType>,
|
|
|
|
|
Else<InvalidType>
|
|
|
|
|
>
|
|
|
|
|
>
|
|
|
|
|
>
|
|
|
|
|
>,
|
|
|
|
|
Else<
|
|
|
|
|
If<std::is_same<Op, MinusImpl<T0, T1>>::value,
|
|
|
|
|
Then<
|
2014-09-17 20:18:52 +00:00
|
|
|
|
If<IsDateOrDateTime<LeftDataType>::value,
|
2014-09-08 10:46:30 +00:00
|
|
|
|
Then<
|
|
|
|
|
If<std::is_same<LeftDataType, RightDataType>::value,
|
|
|
|
|
Then<DataTypeInt32>,
|
|
|
|
|
Else<
|
|
|
|
|
If<IsIntegral<RightDataType>::value,
|
|
|
|
|
Then<LeftDataType>,
|
|
|
|
|
Else<InvalidType>
|
|
|
|
|
>
|
|
|
|
|
>
|
|
|
|
|
>
|
|
|
|
|
>,
|
|
|
|
|
Else<InvalidType>
|
|
|
|
|
>
|
|
|
|
|
>,
|
2015-07-10 02:57:32 +00:00
|
|
|
|
Else<
|
|
|
|
|
If<std::is_same<T0, T1>::value
|
|
|
|
|
&& (std::is_same<Op, LeastImpl<T0, T1>>::value || std::is_same<Op, GreatestImpl<T0, T1>>::value),
|
|
|
|
|
Then<LeftDataType>,
|
|
|
|
|
Else<InvalidType>
|
|
|
|
|
>
|
|
|
|
|
>
|
2014-09-08 10:46:30 +00:00
|
|
|
|
>
|
|
|
|
|
>
|
|
|
|
|
>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Decides among date and numeric operations
|
|
|
|
|
template <template <typename, typename> class Operation, typename LeftDataType, typename RightDataType>
|
|
|
|
|
struct BinaryOperationTraits
|
|
|
|
|
{
|
|
|
|
|
using ResultDataType =
|
2014-09-17 20:18:52 +00:00
|
|
|
|
If<IsDateOrDateTime<LeftDataType>::value || IsDateOrDateTime<RightDataType>::value,
|
2014-09-08 10:46:30 +00:00
|
|
|
|
Then<
|
|
|
|
|
typename DateBinaryOperationTraits<
|
|
|
|
|
Operation, LeftDataType, RightDataType
|
|
|
|
|
>::ResultDataType
|
|
|
|
|
>,
|
|
|
|
|
Else<
|
|
|
|
|
typename DataTypeFromFieldType<
|
|
|
|
|
typename Operation<
|
|
|
|
|
typename LeftDataType::FieldType,
|
|
|
|
|
typename RightDataType::FieldType
|
|
|
|
|
>::ResultType
|
|
|
|
|
>::Type
|
|
|
|
|
>
|
|
|
|
|
>;
|
|
|
|
|
};
|
|
|
|
|
|
2012-12-20 20:01:18 +00:00
|
|
|
|
|
|
|
|
|
template <template <typename, typename> class Op, typename Name>
|
2011-08-09 15:57:33 +00:00
|
|
|
|
class FunctionBinaryArithmetic : public IFunction
|
|
|
|
|
{
|
2014-11-12 17:23:26 +00:00
|
|
|
|
public:
|
|
|
|
|
static constexpr auto name = Name::name;
|
2016-05-28 15:42:22 +00:00
|
|
|
|
static FunctionPtr create(const Context & context) { return std::make_shared<FunctionBinaryArithmetic>(); }
|
2014-11-12 17:23:26 +00:00
|
|
|
|
|
2011-08-12 20:39:42 +00:00
|
|
|
|
private:
|
2014-09-08 12:22:36 +00:00
|
|
|
|
/// Overload for InvalidType
|
|
|
|
|
template <typename ResultDataType,
|
|
|
|
|
typename std::enable_if<std::is_same<ResultDataType, InvalidType>::value>::type * = nullptr>
|
|
|
|
|
bool checkRightTypeImpl(DataTypePtr & type_res) const
|
2014-09-08 10:46:30 +00:00
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-08 12:22:36 +00:00
|
|
|
|
/// Overload for well-defined operations
|
|
|
|
|
template <typename ResultDataType,
|
|
|
|
|
typename std::enable_if<!std::is_same<ResultDataType, InvalidType>::value>::type * = nullptr>
|
|
|
|
|
bool checkRightTypeImpl(DataTypePtr & type_res) const
|
2014-09-08 10:46:30 +00:00
|
|
|
|
{
|
2016-05-28 07:48:40 +00:00
|
|
|
|
type_res = std::make_shared<ResultDataType>();
|
2014-09-08 10:46:30 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename LeftDataType, typename RightDataType>
|
2011-09-24 20:32:41 +00:00
|
|
|
|
bool checkRightType(const DataTypes & arguments, DataTypePtr & type_res) const
|
2011-08-12 20:39:42 +00:00
|
|
|
|
{
|
2014-09-08 10:46:30 +00:00
|
|
|
|
using ResultDataType = typename BinaryOperationTraits<Op, LeftDataType, RightDataType>::ResultDataType;
|
|
|
|
|
|
|
|
|
|
if (typeid_cast<const RightDataType *>(&*arguments[1]))
|
2014-09-08 12:22:36 +00:00
|
|
|
|
return checkRightTypeImpl<ResultDataType>(type_res);
|
2014-09-08 10:46:30 +00:00
|
|
|
|
|
2011-08-12 20:39:42 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T0>
|
2011-09-24 20:32:41 +00:00
|
|
|
|
bool checkLeftType(const DataTypes & arguments, DataTypePtr & type_res) const
|
2011-08-12 20:39:42 +00:00
|
|
|
|
{
|
2014-06-26 00:58:14 +00:00
|
|
|
|
if (typeid_cast<const T0 *>(&*arguments[0]))
|
2011-08-12 20:39:42 +00:00
|
|
|
|
{
|
2014-09-08 10:46:30 +00:00
|
|
|
|
if ( checkRightType<T0, DataTypeDate>(arguments, type_res)
|
|
|
|
|
|| checkRightType<T0, DataTypeDateTime>(arguments, type_res)
|
|
|
|
|
|| checkRightType<T0, DataTypeUInt8>(arguments, type_res)
|
2011-09-24 20:32:41 +00:00
|
|
|
|
|| checkRightType<T0, DataTypeUInt16>(arguments, type_res)
|
|
|
|
|
|| checkRightType<T0, DataTypeUInt32>(arguments, type_res)
|
|
|
|
|
|| checkRightType<T0, DataTypeUInt64>(arguments, type_res)
|
|
|
|
|
|| checkRightType<T0, DataTypeInt8>(arguments, type_res)
|
|
|
|
|
|| checkRightType<T0, DataTypeInt16>(arguments, type_res)
|
|
|
|
|
|| checkRightType<T0, DataTypeInt32>(arguments, type_res)
|
|
|
|
|
|| checkRightType<T0, DataTypeInt64>(arguments, type_res)
|
|
|
|
|
|| checkRightType<T0, DataTypeFloat32>(arguments, type_res)
|
2012-12-14 20:24:26 +00:00
|
|
|
|
|| checkRightType<T0, DataTypeFloat64>(arguments, type_res))
|
2011-08-12 20:39:42 +00:00
|
|
|
|
return true;
|
|
|
|
|
else
|
|
|
|
|
throw Exception("Illegal type " + arguments[1]->getName() + " of second argument of function " + getName(),
|
|
|
|
|
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-08 12:22:36 +00:00
|
|
|
|
/// Overload for date operations
|
2015-07-10 02:57:32 +00:00
|
|
|
|
template <typename LeftDataType, typename RightDataType, typename ColumnType>
|
2014-09-08 12:22:36 +00:00
|
|
|
|
bool executeRightType(Block & block, const ColumnNumbers & arguments, const size_t result, const ColumnType * col_left)
|
|
|
|
|
{
|
2017-01-02 20:12:12 +00:00
|
|
|
|
if (!typeid_cast<const RightDataType *>(block.safeGetByPosition(arguments[1]).type.get()))
|
2014-09-08 12:22:36 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
2015-07-10 02:57:32 +00:00
|
|
|
|
using ResultDataType = typename BinaryOperationTraits<Op, LeftDataType, RightDataType>::ResultDataType;
|
2014-09-08 12:22:36 +00:00
|
|
|
|
|
|
|
|
|
return executeRightTypeDispatch<LeftDataType, RightDataType, ResultDataType>(
|
|
|
|
|
block, arguments, result, col_left);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Overload for InvalidType
|
|
|
|
|
template <typename LeftDataType, typename RightDataType, typename ResultDataType, typename ColumnType,
|
|
|
|
|
typename std::enable_if<std::is_same<ResultDataType, InvalidType>::value>::type * = nullptr>
|
|
|
|
|
bool executeRightTypeDispatch(Block & block, const ColumnNumbers & arguments, const size_t result,
|
|
|
|
|
const ColumnType * col_left)
|
|
|
|
|
{
|
2015-07-10 02:57:32 +00:00
|
|
|
|
throw Exception("Types " + TypeName<typename LeftDataType::FieldType>::get()
|
|
|
|
|
+ " and " + TypeName<typename LeftDataType::FieldType>::get()
|
|
|
|
|
+ " are incompatible for function " + getName() + " or not upscaleable to common type", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
2014-09-08 12:22:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Overload for well-defined operations
|
|
|
|
|
template <typename LeftDataType, typename RightDataType, typename ResultDataType, typename ColumnType,
|
|
|
|
|
typename std::enable_if<!std::is_same<ResultDataType, InvalidType>::value>::type * = nullptr>
|
|
|
|
|
bool executeRightTypeDispatch(Block & block, const ColumnNumbers & arguments, const size_t result,
|
|
|
|
|
const ColumnType * col_left)
|
|
|
|
|
{
|
|
|
|
|
using T0 = typename LeftDataType::FieldType;
|
|
|
|
|
using T1 = typename RightDataType::FieldType;
|
|
|
|
|
using ResultType = typename ResultDataType::FieldType;
|
|
|
|
|
|
|
|
|
|
return executeRightTypeImpl<T0, T1, ResultType>(block, arguments, result, col_left);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// ColumnVector overload
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename T0, typename T1, typename ResultType = typename Op<T0, T1>::ResultType>
|
2014-09-08 12:22:36 +00:00
|
|
|
|
bool executeRightTypeImpl(Block & block, const ColumnNumbers & arguments, size_t result, const ColumnVector<T0> * col_left)
|
2011-08-12 20:39:42 +00:00
|
|
|
|
{
|
2017-01-02 20:12:12 +00:00
|
|
|
|
if (auto col_right = typeid_cast<const ColumnVector<T1> *>(block.safeGetByPosition(arguments[1]).column.get()))
|
2011-08-12 20:39:42 +00:00
|
|
|
|
{
|
2016-05-28 05:31:36 +00:00
|
|
|
|
auto col_res = std::make_shared<ColumnVector<ResultType>>();
|
2017-01-02 20:12:12 +00:00
|
|
|
|
block.safeGetByPosition(result).column = col_res;
|
2011-08-12 20:39:42 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
auto & vec_res = col_res->getData();
|
2011-08-12 20:39:42 +00:00
|
|
|
|
vec_res.resize(col_left->getData().size());
|
2014-09-08 10:46:30 +00:00
|
|
|
|
BinaryOperationImpl<T0, T1, Op<T0, T1>, ResultType>::vector_vector(col_left->getData(), col_right->getData(), vec_res);
|
2011-08-12 20:39:42 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2017-01-02 20:12:12 +00:00
|
|
|
|
else if (auto col_right = typeid_cast<const ColumnConst<T1> *>(block.safeGetByPosition(arguments[1]).column.get()))
|
2011-08-12 20:39:42 +00:00
|
|
|
|
{
|
2016-05-28 05:31:36 +00:00
|
|
|
|
auto col_res = std::make_shared<ColumnVector<ResultType>>();
|
2017-01-02 20:12:12 +00:00
|
|
|
|
block.safeGetByPosition(result).column = col_res;
|
2011-08-12 20:39:42 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
auto & vec_res = col_res->getData();
|
2011-08-12 20:39:42 +00:00
|
|
|
|
vec_res.resize(col_left->getData().size());
|
2014-09-08 10:46:30 +00:00
|
|
|
|
BinaryOperationImpl<T0, T1, Op<T0, T1>, ResultType>::vector_constant(col_left->getData(), col_right->getData(), vec_res);
|
2011-08-12 20:39:42 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2015-07-10 02:57:32 +00:00
|
|
|
|
throw Exception("Logical error: unexpected type of column", ErrorCodes::LOGICAL_ERROR);
|
2011-08-12 20:39:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-09-08 12:22:36 +00:00
|
|
|
|
/// ColumnConst overload
|
2014-09-08 10:46:30 +00:00
|
|
|
|
template <typename T0, typename T1, typename ResultType = typename Op<T0, T1>::ResultType>
|
2014-09-08 12:22:36 +00:00
|
|
|
|
bool executeRightTypeImpl(Block & block, const ColumnNumbers & arguments, size_t result, const ColumnConst<T0> * col_left)
|
2011-08-12 20:39:42 +00:00
|
|
|
|
{
|
2017-01-02 20:12:12 +00:00
|
|
|
|
if (auto col_right = typeid_cast<const ColumnVector<T1> *>(block.safeGetByPosition(arguments[1]).column.get()))
|
2011-08-12 20:39:42 +00:00
|
|
|
|
{
|
2016-05-28 05:31:36 +00:00
|
|
|
|
auto col_res = std::make_shared<ColumnVector<ResultType>>();
|
2017-01-02 20:12:12 +00:00
|
|
|
|
block.safeGetByPosition(result).column = col_res;
|
2011-08-12 20:39:42 +00:00
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
auto & vec_res = col_res->getData();
|
2011-08-12 20:39:42 +00:00
|
|
|
|
vec_res.resize(col_left->size());
|
2014-09-08 10:46:30 +00:00
|
|
|
|
BinaryOperationImpl<T0, T1, Op<T0, T1>, ResultType>::constant_vector(col_left->getData(), col_right->getData(), vec_res);
|
2011-08-12 20:39:42 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2017-01-02 20:12:12 +00:00
|
|
|
|
else if (auto col_right = typeid_cast<const ColumnConst<T1> *>(block.safeGetByPosition(arguments[1]).column.get()))
|
2011-08-12 20:39:42 +00:00
|
|
|
|
{
|
|
|
|
|
ResultType res = 0;
|
2014-09-08 10:46:30 +00:00
|
|
|
|
BinaryOperationImpl<T0, T1, Op<T0, T1>, ResultType>::constant_constant(col_left->getData(), col_right->getData(), res);
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2016-05-28 05:31:36 +00:00
|
|
|
|
auto col_res = std::make_shared<ColumnConst<ResultType>>(col_left->size(), res);
|
2017-01-02 20:12:12 +00:00
|
|
|
|
block.safeGetByPosition(result).column = col_res;
|
2011-08-12 20:39:42 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-10 02:57:32 +00:00
|
|
|
|
template <typename LeftDataType>
|
2014-09-08 12:22:36 +00:00
|
|
|
|
bool executeLeftType(Block & block, const ColumnNumbers & arguments, const size_t result)
|
2011-08-12 20:39:42 +00:00
|
|
|
|
{
|
2017-01-02 20:12:12 +00:00
|
|
|
|
if (!typeid_cast<const LeftDataType *>(block.safeGetByPosition(arguments[0]).type.get()))
|
2014-09-08 10:46:30 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
using T0 = typename LeftDataType::FieldType;
|
|
|
|
|
|
2014-09-08 12:22:36 +00:00
|
|
|
|
if ( executeLeftTypeImpl<LeftDataType, ColumnVector<T0>>(block, arguments, result)
|
|
|
|
|
|| executeLeftTypeImpl<LeftDataType, ColumnConst<T0>>(block, arguments, result))
|
|
|
|
|
return true;
|
2014-09-08 10:46:30 +00:00
|
|
|
|
|
2014-09-08 12:22:36 +00:00
|
|
|
|
return false;
|
2014-09-08 10:46:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-09-08 12:22:36 +00:00
|
|
|
|
template <typename LeftDataType, typename ColumnType>
|
|
|
|
|
bool executeLeftTypeImpl(Block & block, const ColumnNumbers & arguments, const size_t result)
|
2014-09-08 10:46:30 +00:00
|
|
|
|
{
|
2017-01-02 20:12:12 +00:00
|
|
|
|
if (auto col_left = typeid_cast<const ColumnType *>(block.safeGetByPosition(arguments[0]).column.get()))
|
2014-09-08 10:46:30 +00:00
|
|
|
|
{
|
2014-09-08 12:22:36 +00:00
|
|
|
|
if ( executeRightType<LeftDataType, DataTypeDate>(block, arguments, result, col_left)
|
|
|
|
|
|| executeRightType<LeftDataType, DataTypeDateTime>(block, arguments, result, col_left)
|
|
|
|
|
|| executeRightType<LeftDataType, DataTypeUInt8>(block, arguments, result, col_left)
|
|
|
|
|
|| executeRightType<LeftDataType, DataTypeUInt16>(block, arguments, result, col_left)
|
|
|
|
|
|| executeRightType<LeftDataType, DataTypeUInt32>(block, arguments, result, col_left)
|
|
|
|
|
|| executeRightType<LeftDataType, DataTypeUInt64>(block, arguments, result, col_left)
|
|
|
|
|
|| executeRightType<LeftDataType, DataTypeInt8>(block, arguments, result, col_left)
|
|
|
|
|
|| executeRightType<LeftDataType, DataTypeInt16>(block, arguments, result, col_left)
|
|
|
|
|
|| executeRightType<LeftDataType, DataTypeInt32>(block, arguments, result, col_left)
|
|
|
|
|
|| executeRightType<LeftDataType, DataTypeInt64>(block, arguments, result, col_left)
|
|
|
|
|
|| executeRightType<LeftDataType, DataTypeFloat32>(block, arguments, result, col_left)
|
|
|
|
|
|| executeRightType<LeftDataType, DataTypeFloat64>(block, arguments, result, col_left))
|
2014-09-08 10:46:30 +00:00
|
|
|
|
return true;
|
|
|
|
|
else
|
2017-01-02 20:12:12 +00:00
|
|
|
|
throw Exception("Illegal column " + block.safeGetByPosition(arguments[1]).column->getName()
|
2014-09-08 10:46:30 +00:00
|
|
|
|
+ " of second argument of function " + getName(),
|
|
|
|
|
ErrorCodes::ILLEGAL_COLUMN);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-09 15:57:33 +00:00
|
|
|
|
public:
|
2015-10-11 23:36:45 +00:00
|
|
|
|
String getName() const override
|
2011-08-09 15:57:33 +00:00
|
|
|
|
{
|
2014-11-12 17:23:26 +00:00
|
|
|
|
return name;
|
2011-08-09 15:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-12-29 19:38:10 +00:00
|
|
|
|
size_t getNumberOfArguments() const override { return 2; }
|
|
|
|
|
|
2016-07-06 09:47:55 +00:00
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
2011-08-09 15:57:33 +00:00
|
|
|
|
{
|
2011-09-24 20:32:41 +00:00
|
|
|
|
DataTypePtr type_res;
|
|
|
|
|
|
2014-09-08 10:46:30 +00:00
|
|
|
|
if (!( checkLeftType<DataTypeDate>(arguments, type_res)
|
|
|
|
|
|| checkLeftType<DataTypeDateTime>(arguments, type_res)
|
|
|
|
|
|| checkLeftType<DataTypeUInt8>(arguments, type_res)
|
2011-09-24 20:32:41 +00:00
|
|
|
|
|| checkLeftType<DataTypeUInt16>(arguments, type_res)
|
|
|
|
|
|| checkLeftType<DataTypeUInt32>(arguments, type_res)
|
|
|
|
|
|| checkLeftType<DataTypeUInt64>(arguments, type_res)
|
|
|
|
|
|| checkLeftType<DataTypeInt8>(arguments, type_res)
|
|
|
|
|
|| checkLeftType<DataTypeInt16>(arguments, type_res)
|
|
|
|
|
|| checkLeftType<DataTypeInt32>(arguments, type_res)
|
|
|
|
|
|| checkLeftType<DataTypeInt64>(arguments, type_res)
|
|
|
|
|
|| checkLeftType<DataTypeFloat32>(arguments, type_res)
|
2012-12-14 20:24:26 +00:00
|
|
|
|
|| checkLeftType<DataTypeFloat64>(arguments, type_res)))
|
2011-08-09 15:57:33 +00:00
|
|
|
|
throw Exception("Illegal type " + arguments[0]->getName() + " of first argument of function " + getName(),
|
|
|
|
|
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
|
|
|
|
|
2011-09-24 20:32:41 +00:00
|
|
|
|
return type_res;
|
2011-08-09 15:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-07-06 09:47:55 +00:00
|
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result) override
|
2011-08-09 15:57:33 +00:00
|
|
|
|
{
|
2014-09-08 12:22:36 +00:00
|
|
|
|
if (!( executeLeftType<DataTypeDate>(block, arguments, result)
|
|
|
|
|
|| executeLeftType<DataTypeDateTime>(block, arguments, result)
|
|
|
|
|
|| executeLeftType<DataTypeUInt8>(block, arguments, result)
|
|
|
|
|
|| executeLeftType<DataTypeUInt16>(block, arguments, result)
|
|
|
|
|
|| executeLeftType<DataTypeUInt32>(block, arguments, result)
|
|
|
|
|
|| executeLeftType<DataTypeUInt64>(block, arguments, result)
|
|
|
|
|
|| executeLeftType<DataTypeInt8>(block, arguments, result)
|
|
|
|
|
|| executeLeftType<DataTypeInt16>(block, arguments, result)
|
|
|
|
|
|| executeLeftType<DataTypeInt32>(block, arguments, result)
|
|
|
|
|
|| executeLeftType<DataTypeInt64>(block, arguments, result)
|
|
|
|
|
|| executeLeftType<DataTypeFloat32>(block, arguments, result)
|
|
|
|
|
|| executeLeftType<DataTypeFloat64>(block, arguments, result)))
|
2017-01-02 20:12:12 +00:00
|
|
|
|
throw Exception("Illegal column " + block.safeGetByPosition(arguments[0]).column->getName()
|
2011-08-28 00:31:30 +00:00
|
|
|
|
+ " of first argument of function " + getName(),
|
2011-08-09 15:57:33 +00:00
|
|
|
|
ErrorCodes::ILLEGAL_COLUMN);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2015-11-29 08:06:29 +00:00
|
|
|
|
template <typename FunctionName>
|
|
|
|
|
struct FunctionUnaryArithmeticMonotonicity;
|
|
|
|
|
|
|
|
|
|
|
2017-01-05 16:34:05 +00:00
|
|
|
|
template <template <typename> class Op, typename Name, bool is_injective>
|
2011-09-05 00:32:22 +00:00
|
|
|
|
class FunctionUnaryArithmetic : public IFunction
|
|
|
|
|
{
|
2014-11-12 17:23:26 +00:00
|
|
|
|
public:
|
|
|
|
|
static constexpr auto name = Name::name;
|
2016-05-28 15:42:22 +00:00
|
|
|
|
static FunctionPtr create(const Context & context) { return std::make_shared<FunctionUnaryArithmetic>(); }
|
2014-11-12 17:23:26 +00:00
|
|
|
|
|
2011-09-05 00:32:22 +00:00
|
|
|
|
private:
|
|
|
|
|
template <typename T0>
|
2011-09-25 05:29:13 +00:00
|
|
|
|
bool checkType(const DataTypes & arguments, DataTypePtr & result) const
|
2011-09-05 00:32:22 +00:00
|
|
|
|
{
|
2014-06-26 00:58:14 +00:00
|
|
|
|
if (typeid_cast<const T0 *>(&*arguments[0]))
|
2011-09-05 00:32:22 +00:00
|
|
|
|
{
|
2017-03-12 10:13:45 +00:00
|
|
|
|
result = std::make_shared<DataTypeNumber<typename Op<typename T0::FieldType>::ResultType>>();
|
2011-09-05 00:32:22 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T0>
|
2011-09-24 20:32:41 +00:00
|
|
|
|
bool executeType(Block & block, const ColumnNumbers & arguments, size_t result)
|
2011-09-05 00:32:22 +00:00
|
|
|
|
{
|
2017-01-02 20:12:12 +00:00
|
|
|
|
if (const ColumnVector<T0> * col = typeid_cast<const ColumnVector<T0> *>(block.safeGetByPosition(arguments[0]).column.get()))
|
2011-09-05 00:32:22 +00:00
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename Op<T0>::ResultType;
|
2011-09-05 00:32:22 +00:00
|
|
|
|
|
2016-05-28 05:31:36 +00:00
|
|
|
|
std::shared_ptr<ColumnVector<ResultType>> col_res = std::make_shared<ColumnVector<ResultType>>();
|
2017-01-02 20:12:12 +00:00
|
|
|
|
block.safeGetByPosition(result).column = col_res;
|
2011-09-05 00:32:22 +00:00
|
|
|
|
|
|
|
|
|
typename ColumnVector<ResultType>::Container_t & vec_res = col_res->getData();
|
|
|
|
|
vec_res.resize(col->getData().size());
|
2012-12-20 20:01:18 +00:00
|
|
|
|
UnaryOperationImpl<T0, Op<T0> >::vector(col->getData(), vec_res);
|
2011-09-05 00:32:22 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2017-01-02 20:12:12 +00:00
|
|
|
|
else if (const ColumnConst<T0> * col = typeid_cast<const ColumnConst<T0> *>(block.safeGetByPosition(arguments[0]).column.get()))
|
2011-09-05 00:32:22 +00:00
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename Op<T0>::ResultType;
|
2011-09-05 00:32:22 +00:00
|
|
|
|
|
|
|
|
|
ResultType res = 0;
|
2012-12-20 20:01:18 +00:00
|
|
|
|
UnaryOperationImpl<T0, Op<T0> >::constant(col->getData(), res);
|
2011-09-05 00:32:22 +00:00
|
|
|
|
|
2016-05-28 05:31:36 +00:00
|
|
|
|
std::shared_ptr<ColumnConst<ResultType>> col_res = std::make_shared<ColumnConst<ResultType>>(col->size(), res);
|
2017-01-02 20:12:12 +00:00
|
|
|
|
block.safeGetByPosition(result).column = col_res;
|
2011-09-05 00:32:22 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public:
|
2015-10-11 23:36:45 +00:00
|
|
|
|
String getName() const override
|
2011-09-05 00:32:22 +00:00
|
|
|
|
{
|
2014-11-12 17:23:26 +00:00
|
|
|
|
return name;
|
2011-09-05 00:32:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-12-29 19:38:10 +00:00
|
|
|
|
size_t getNumberOfArguments() const override { return 1; }
|
2017-01-05 16:34:05 +00:00
|
|
|
|
bool isInjective(const Block &) override { return is_injective; }
|
2016-12-29 19:38:10 +00:00
|
|
|
|
|
2016-07-06 09:47:55 +00:00
|
|
|
|
DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
|
2011-09-05 00:32:22 +00:00
|
|
|
|
{
|
2011-09-24 20:32:41 +00:00
|
|
|
|
DataTypePtr result;
|
|
|
|
|
|
|
|
|
|
if (!( checkType<DataTypeUInt8>(arguments, result)
|
|
|
|
|
|| checkType<DataTypeUInt16>(arguments, result)
|
|
|
|
|
|| checkType<DataTypeUInt32>(arguments, result)
|
|
|
|
|
|| checkType<DataTypeUInt64>(arguments, result)
|
|
|
|
|
|| checkType<DataTypeInt8>(arguments, result)
|
|
|
|
|
|| checkType<DataTypeInt16>(arguments, result)
|
|
|
|
|
|| checkType<DataTypeInt32>(arguments, result)
|
|
|
|
|
|| checkType<DataTypeInt64>(arguments, result)
|
|
|
|
|
|| checkType<DataTypeFloat32>(arguments, result)
|
2012-12-14 20:24:26 +00:00
|
|
|
|
|| checkType<DataTypeFloat64>(arguments, result)))
|
2011-09-05 00:32:22 +00:00
|
|
|
|
throw Exception("Illegal type " + arguments[0]->getName() + " of argument of function " + getName(),
|
|
|
|
|
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
|
|
|
|
|
2011-09-24 20:32:41 +00:00
|
|
|
|
return result;
|
2011-09-05 00:32:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-07-06 09:47:55 +00:00
|
|
|
|
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result) override
|
2011-09-05 00:32:22 +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-01-02 20:12:12 +00:00
|
|
|
|
throw Exception("Illegal column " + block.safeGetByPosition(arguments[0]).column->getName()
|
2011-09-05 00:32:22 +00:00
|
|
|
|
+ " of argument of function " + getName(),
|
|
|
|
|
ErrorCodes::ILLEGAL_COLUMN);
|
|
|
|
|
}
|
2015-11-29 08:06:29 +00:00
|
|
|
|
|
|
|
|
|
bool hasInformationAboutMonotonicity() const override
|
|
|
|
|
{
|
|
|
|
|
return FunctionUnaryArithmeticMonotonicity<Name>::has();
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-29 11:58:44 +00:00
|
|
|
|
Monotonicity getMonotonicityForRange(const IDataType & type, const Field & left, const Field & right) const override
|
2015-11-29 08:06:29 +00:00
|
|
|
|
{
|
|
|
|
|
return FunctionUnaryArithmeticMonotonicity<Name>::get(left, right);
|
|
|
|
|
}
|
2011-09-05 00:32:22 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2014-11-12 17:23:26 +00:00
|
|
|
|
struct NamePlus { static constexpr auto name = "plus"; };
|
|
|
|
|
struct NameMinus { static constexpr auto name = "minus"; };
|
|
|
|
|
struct NameMultiply { static constexpr auto name = "multiply"; };
|
|
|
|
|
struct NameDivideFloating { static constexpr auto name = "divide"; };
|
|
|
|
|
struct NameDivideIntegral { static constexpr auto name = "intDiv"; };
|
2014-11-21 14:28:39 +00:00
|
|
|
|
struct NameDivideIntegralOrZero { static constexpr auto name = "intDivOrZero"; };
|
2014-11-12 17:23:26 +00:00
|
|
|
|
struct NameModulo { static constexpr auto name = "modulo"; };
|
|
|
|
|
struct NameNegate { static constexpr auto name = "negate"; };
|
2014-11-28 16:09:29 +00:00
|
|
|
|
struct NameAbs { static constexpr auto name = "abs"; };
|
2014-11-12 17:23:26 +00:00
|
|
|
|
struct NameBitAnd { static constexpr auto name = "bitAnd"; };
|
|
|
|
|
struct NameBitOr { static constexpr auto name = "bitOr"; };
|
|
|
|
|
struct NameBitXor { static constexpr auto name = "bitXor"; };
|
|
|
|
|
struct NameBitNot { static constexpr auto name = "bitNot"; };
|
|
|
|
|
struct NameBitShiftLeft { static constexpr auto name = "bitShiftLeft"; };
|
|
|
|
|
struct NameBitShiftRight { static constexpr auto name = "bitShiftRight"; };
|
2017-03-20 19:16:02 +00:00
|
|
|
|
struct NameBitRotateLeft { static constexpr auto name = "bitRotateLeft"; };
|
|
|
|
|
struct NameBitRotateRight { static constexpr auto name = "bitRotateRight"; };
|
2015-07-10 02:57:32 +00:00
|
|
|
|
struct NameLeast { static constexpr auto name = "least"; };
|
|
|
|
|
struct NameGreatest { static constexpr auto name = "greatest"; };
|
2013-12-17 13:49:21 +00:00
|
|
|
|
|
2017-01-05 16:34:05 +00:00
|
|
|
|
using FunctionPlus = FunctionBinaryArithmetic<PlusImpl, NamePlus>;
|
|
|
|
|
using FunctionMinus = FunctionBinaryArithmetic<MinusImpl, NameMinus>;
|
|
|
|
|
using FunctionMultiply = FunctionBinaryArithmetic<MultiplyImpl, NameMultiply>;
|
|
|
|
|
using FunctionDivideFloating = FunctionBinaryArithmetic<DivideFloatingImpl, NameDivideFloating>;
|
|
|
|
|
using FunctionDivideIntegral = FunctionBinaryArithmetic<DivideIntegralImpl, NameDivideIntegral>;
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using FunctionDivideIntegralOrZero = FunctionBinaryArithmetic<DivideIntegralOrZeroImpl, NameDivideIntegralOrZero>;
|
2017-01-05 16:34:05 +00:00
|
|
|
|
using FunctionModulo = FunctionBinaryArithmetic<ModuloImpl, NameModulo>;
|
|
|
|
|
using FunctionNegate = FunctionUnaryArithmetic<NegateImpl, NameNegate, true>;
|
|
|
|
|
using FunctionAbs = FunctionUnaryArithmetic<AbsImpl, NameAbs, false>;
|
|
|
|
|
using FunctionBitAnd = FunctionBinaryArithmetic<BitAndImpl, NameBitAnd>;
|
|
|
|
|
using FunctionBitOr = FunctionBinaryArithmetic<BitOrImpl, NameBitOr>;
|
|
|
|
|
using FunctionBitXor = FunctionBinaryArithmetic<BitXorImpl, NameBitXor>;
|
|
|
|
|
using FunctionBitNot = FunctionUnaryArithmetic<BitNotImpl, NameBitNot, true>;
|
|
|
|
|
using FunctionBitShiftLeft = FunctionBinaryArithmetic<BitShiftLeftImpl, NameBitShiftLeft>;
|
|
|
|
|
using FunctionBitShiftRight = FunctionBinaryArithmetic<BitShiftRightImpl, NameBitShiftRight>;
|
2017-03-20 19:16:02 +00:00
|
|
|
|
using FunctionBitRotateLeft = FunctionBinaryArithmetic<BitRotateLeftImpl, NameBitRotateLeft>;
|
|
|
|
|
using FunctionBitRotateRight = FunctionBinaryArithmetic<BitRotateRightImpl, NameBitRotateRight>;
|
2017-01-05 16:34:05 +00:00
|
|
|
|
using FunctionLeast = FunctionBinaryArithmetic<LeastImpl, NameLeast>;
|
|
|
|
|
using FunctionGreatest = FunctionBinaryArithmetic<GreatestImpl, NameGreatest>;
|
2011-08-09 15:57:33 +00:00
|
|
|
|
|
2015-11-29 08:06:29 +00:00
|
|
|
|
/// Свойства монотонности для некоторых функций.
|
|
|
|
|
|
|
|
|
|
template <> struct FunctionUnaryArithmeticMonotonicity<NameNegate>
|
|
|
|
|
{
|
|
|
|
|
static bool has() { return true; }
|
|
|
|
|
static IFunction::Monotonicity get(const Field & left, const Field & right)
|
|
|
|
|
{
|
2015-11-29 11:58:44 +00:00
|
|
|
|
return { true, false };
|
2015-11-29 08:06:29 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <> struct FunctionUnaryArithmeticMonotonicity<NameAbs>
|
|
|
|
|
{
|
|
|
|
|
static bool has() { return true; }
|
|
|
|
|
static IFunction::Monotonicity get(const Field & left, const Field & right)
|
|
|
|
|
{
|
2017-01-06 17:41:19 +00:00
|
|
|
|
Float64 left_float = left.isNull() ? -std::numeric_limits<Float64>::infinity() : applyVisitor(FieldVisitorConvertToNumber<Float64>(), left);
|
|
|
|
|
Float64 right_float = right.isNull() ? std::numeric_limits<Float64>::infinity() : applyVisitor(FieldVisitorConvertToNumber<Float64>(), right);
|
2015-11-29 08:06:29 +00:00
|
|
|
|
|
|
|
|
|
if ((left_float < 0 && right_float > 0) || (left_float > 0 && right_float < 0))
|
|
|
|
|
return {};
|
|
|
|
|
|
2015-11-29 11:58:44 +00:00
|
|
|
|
return { true, (left_float > 0) };
|
2015-11-29 08:06:29 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <> struct FunctionUnaryArithmeticMonotonicity<NameBitNot>
|
|
|
|
|
{
|
|
|
|
|
static bool has() { return false; }
|
|
|
|
|
static IFunction::Monotonicity get(const Field & left, const Field & right)
|
|
|
|
|
{
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2017-03-12 11:09:25 +00:00
|
|
|
|
}
|
2011-08-09 15:57:33 +00:00
|
|
|
|
|
2014-08-17 02:13:40 +00:00
|
|
|
|
/// Оптимизации для целочисленного деления на константу.
|
|
|
|
|
|
2017-01-27 19:55:33 +00:00
|
|
|
|
#if __SSE2__
|
2016-01-13 21:05:11 +00:00
|
|
|
|
#define LIBDIVIDE_USE_SSE2 1
|
|
|
|
|
#endif
|
|
|
|
|
|
2014-08-17 02:13:40 +00:00
|
|
|
|
#include <libdivide.h>
|
|
|
|
|
|
2017-03-12 11:09:25 +00:00
|
|
|
|
namespace DB
|
|
|
|
|
{
|
2014-08-17 02:13:40 +00:00
|
|
|
|
|
|
|
|
|
template <typename A, typename B>
|
|
|
|
|
struct DivideIntegralByConstantImpl
|
|
|
|
|
: BinaryOperationImplBase<A, B, DivideIntegralImpl<A, B>>
|
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename DivideIntegralImpl<A, B>::ResultType;
|
2014-08-17 02:13:40 +00:00
|
|
|
|
|
2016-04-15 00:33:21 +00:00
|
|
|
|
static void vector_constant(const PaddedPODArray<A> & a, B b, PaddedPODArray<ResultType> & c)
|
2014-08-17 02:13:40 +00:00
|
|
|
|
{
|
|
|
|
|
if (unlikely(b == 0))
|
|
|
|
|
throw Exception("Division by zero", ErrorCodes::ILLEGAL_DIVISION);
|
|
|
|
|
|
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wsign-compare"
|
|
|
|
|
|
|
|
|
|
if (unlikely(std::is_signed<B>::value && b == -1))
|
|
|
|
|
{
|
|
|
|
|
size_t size = a.size();
|
|
|
|
|
for (size_t i = 0; i < size; ++i)
|
|
|
|
|
c[i] = -c[i];
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
|
|
|
|
|
libdivide::divider<A> divider(b);
|
|
|
|
|
|
|
|
|
|
size_t size = a.size();
|
|
|
|
|
const A * a_pos = &a[0];
|
|
|
|
|
const A * a_end = a_pos + size;
|
|
|
|
|
ResultType * c_pos = &c[0];
|
2016-01-13 21:05:11 +00:00
|
|
|
|
|
2017-01-27 19:55:33 +00:00
|
|
|
|
#if __SSE2__
|
2014-08-17 02:13:40 +00:00
|
|
|
|
static constexpr size_t values_per_sse_register = 16 / sizeof(A);
|
|
|
|
|
const A * a_end_sse = a_pos + size / values_per_sse_register * values_per_sse_register;
|
|
|
|
|
|
|
|
|
|
while (a_pos < a_end_sse)
|
|
|
|
|
{
|
|
|
|
|
_mm_storeu_si128(reinterpret_cast<__m128i *>(c_pos),
|
|
|
|
|
_mm_loadu_si128(reinterpret_cast<const __m128i *>(a_pos)) / divider);
|
|
|
|
|
|
|
|
|
|
a_pos += values_per_sse_register;
|
|
|
|
|
c_pos += values_per_sse_register;
|
|
|
|
|
}
|
2016-01-13 21:05:11 +00:00
|
|
|
|
#endif
|
2014-08-17 02:13:40 +00:00
|
|
|
|
|
|
|
|
|
while (a_pos < a_end)
|
|
|
|
|
{
|
|
|
|
|
*c_pos = *a_pos / divider;
|
|
|
|
|
++a_pos;
|
|
|
|
|
++c_pos;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
template <typename A, typename B>
|
|
|
|
|
struct ModuloByConstantImpl
|
|
|
|
|
: BinaryOperationImplBase<A, B, ModuloImpl<A, B>>
|
|
|
|
|
{
|
2016-05-28 10:35:44 +00:00
|
|
|
|
using ResultType = typename ModuloImpl<A, B>::ResultType;
|
2014-08-17 02:13:40 +00:00
|
|
|
|
|
2016-04-15 00:33:21 +00:00
|
|
|
|
static void vector_constant(const PaddedPODArray<A> & a, B b, PaddedPODArray<ResultType> & c)
|
2014-08-17 02:13:40 +00:00
|
|
|
|
{
|
|
|
|
|
if (unlikely(b == 0))
|
|
|
|
|
throw Exception("Division by zero", ErrorCodes::ILLEGAL_DIVISION);
|
|
|
|
|
|
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
|
#pragma GCC diagnostic ignored "-Wsign-compare"
|
|
|
|
|
|
|
|
|
|
if (unlikely((std::is_signed<B>::value && b == -1) || b == 1))
|
|
|
|
|
{
|
|
|
|
|
size_t size = a.size();
|
|
|
|
|
for (size_t i = 0; i < size; ++i)
|
|
|
|
|
c[i] = 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
|
|
|
|
|
libdivide::divider<A> divider(b);
|
|
|
|
|
|
|
|
|
|
/// Тут не удалось сделать так, чтобы SSE вариант из libdivide давал преимущество.
|
|
|
|
|
size_t size = a.size();
|
|
|
|
|
for (size_t i = 0; i < size; ++i)
|
|
|
|
|
c[i] = a[i] - (a[i] / divider) * b; /// NOTE: возможно, не сохраняется семантика деления с остатком отрицательных чисел.
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Прописаны специализации для деления чисел типа UInt64 и UInt32 на числа той же знаковости.
|
|
|
|
|
* Можно дополнить до всех возможных комбинаций, но потребуется больше кода.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt64, UInt8, DivideIntegralImpl<UInt64, UInt8>> : DivideIntegralByConstantImpl<UInt64, UInt8> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt64, UInt16, DivideIntegralImpl<UInt64, UInt16>> : DivideIntegralByConstantImpl<UInt64, UInt16> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt64, UInt32, DivideIntegralImpl<UInt64, UInt32>> : DivideIntegralByConstantImpl<UInt64, UInt32> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt64, UInt64, DivideIntegralImpl<UInt64, UInt64>> : DivideIntegralByConstantImpl<UInt64, UInt64> {};
|
|
|
|
|
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt32, UInt8, DivideIntegralImpl<UInt32, UInt8>> : DivideIntegralByConstantImpl<UInt32, UInt8> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt32, UInt16, DivideIntegralImpl<UInt32, UInt16>> : DivideIntegralByConstantImpl<UInt32, UInt16> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt32, UInt32, DivideIntegralImpl<UInt32, UInt32>> : DivideIntegralByConstantImpl<UInt32, UInt32> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt32, UInt64, DivideIntegralImpl<UInt32, UInt64>> : DivideIntegralByConstantImpl<UInt32, UInt64> {};
|
|
|
|
|
|
|
|
|
|
template <> struct BinaryOperationImpl<Int64, Int8, DivideIntegralImpl<Int64, Int8>> : DivideIntegralByConstantImpl<Int64, Int8> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<Int64, Int16, DivideIntegralImpl<Int64, Int16>> : DivideIntegralByConstantImpl<Int64, Int16> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<Int64, Int32, DivideIntegralImpl<Int64, Int32>> : DivideIntegralByConstantImpl<Int64, Int32> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<Int64, Int64, DivideIntegralImpl<Int64, Int64>> : DivideIntegralByConstantImpl<Int64, Int64> {};
|
|
|
|
|
|
|
|
|
|
template <> struct BinaryOperationImpl<Int32, Int8, DivideIntegralImpl<Int32, Int8>> : DivideIntegralByConstantImpl<Int32, Int8> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<Int32, Int16, DivideIntegralImpl<Int32, Int16>> : DivideIntegralByConstantImpl<Int32, Int16> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<Int32, Int32, DivideIntegralImpl<Int32, Int32>> : DivideIntegralByConstantImpl<Int32, Int32> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<Int32, Int64, DivideIntegralImpl<Int32, Int64>> : DivideIntegralByConstantImpl<Int32, Int64> {};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt64, UInt8, ModuloImpl<UInt64, UInt8>> : ModuloByConstantImpl<UInt64, UInt8> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt64, UInt16, ModuloImpl<UInt64, UInt16>> : ModuloByConstantImpl<UInt64, UInt16> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt64, UInt32, ModuloImpl<UInt64, UInt32>> : ModuloByConstantImpl<UInt64, UInt32> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt64, UInt64, ModuloImpl<UInt64, UInt64>> : ModuloByConstantImpl<UInt64, UInt64> {};
|
|
|
|
|
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt32, UInt8, ModuloImpl<UInt32, UInt8>> : ModuloByConstantImpl<UInt32, UInt8> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt32, UInt16, ModuloImpl<UInt32, UInt16>> : ModuloByConstantImpl<UInt32, UInt16> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt32, UInt32, ModuloImpl<UInt32, UInt32>> : ModuloByConstantImpl<UInt32, UInt32> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<UInt32, UInt64, ModuloImpl<UInt32, UInt64>> : ModuloByConstantImpl<UInt32, UInt64> {};
|
|
|
|
|
|
|
|
|
|
template <> struct BinaryOperationImpl<Int64, Int8, ModuloImpl<Int64, Int8>> : ModuloByConstantImpl<Int64, Int8> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<Int64, Int16, ModuloImpl<Int64, Int16>> : ModuloByConstantImpl<Int64, Int16> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<Int64, Int32, ModuloImpl<Int64, Int32>> : ModuloByConstantImpl<Int64, Int32> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<Int64, Int64, ModuloImpl<Int64, Int64>> : ModuloByConstantImpl<Int64, Int64> {};
|
|
|
|
|
|
|
|
|
|
template <> struct BinaryOperationImpl<Int32, Int8, ModuloImpl<Int32, Int8>> : ModuloByConstantImpl<Int32, Int8> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<Int32, Int16, ModuloImpl<Int32, Int16>> : ModuloByConstantImpl<Int32, Int16> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<Int32, Int32, ModuloImpl<Int32, Int32>> : ModuloByConstantImpl<Int32, Int32> {};
|
|
|
|
|
template <> struct BinaryOperationImpl<Int32, Int64, ModuloImpl<Int32, Int64>> : ModuloByConstantImpl<Int32, Int64> {};
|
|
|
|
|
|
2011-08-09 15:57:33 +00:00
|
|
|
|
}
|