2018-11-26 16:20:40 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/FunctionUnaryArithmetic.h>
|
|
|
|
#include <DataTypes/NumberTraits.h>
|
|
|
|
#include <Common/FieldVisitors.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
template <typename A>
|
|
|
|
struct AbsImpl
|
|
|
|
{
|
|
|
|
using ResultType = std::conditional_t<IsDecimalNumber<A>, A, typename NumberTraits::ResultOfAbs<A>::Type>;
|
2020-02-14 08:17:32 +00:00
|
|
|
static const constexpr bool allow_fixed_string = false;
|
2018-11-26 16:20:40 +00:00
|
|
|
|
2018-12-26 23:55:09 +00:00
|
|
|
static inline NO_SANITIZE_UNDEFINED ResultType apply(A a)
|
2018-11-26 16:20:40 +00:00
|
|
|
{
|
|
|
|
if constexpr (IsDecimalNumber<A>)
|
|
|
|
return a < 0 ? A(-a) : a;
|
2019-11-02 05:55:06 +00:00
|
|
|
else if constexpr (is_integral_v<A> && is_signed_v<A>)
|
2018-11-26 16:20:40 +00:00
|
|
|
return a < 0 ? static_cast<ResultType>(~a) + 1 : a;
|
2019-11-02 05:55:06 +00:00
|
|
|
else if constexpr (is_integral_v<A> && is_unsigned_v<A>)
|
2018-11-26 16:20:40 +00:00
|
|
|
return static_cast<ResultType>(a);
|
|
|
|
else if constexpr (std::is_floating_point_v<A>)
|
|
|
|
return static_cast<ResultType>(std::abs(a));
|
|
|
|
}
|
|
|
|
|
|
|
|
#if USE_EMBEDDED_COMPILER
|
|
|
|
static constexpr bool compilable = false; /// special type handling, some other time
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NameAbs { static constexpr auto name = "abs"; };
|
|
|
|
using FunctionAbs = FunctionUnaryArithmetic<AbsImpl, NameAbs, false>;
|
|
|
|
|
|
|
|
template <> struct FunctionUnaryArithmeticMonotonicity<NameAbs>
|
|
|
|
{
|
|
|
|
static bool has() { return true; }
|
|
|
|
static IFunction::Monotonicity get(const Field & left, const Field & right)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
|
|
|
if ((left_float < 0 && right_float > 0) || (left_float > 0 && right_float < 0))
|
|
|
|
return {};
|
|
|
|
|
|
|
|
return { true, (left_float > 0) };
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void registerFunctionAbs(FunctionFactory & factory)
|
|
|
|
{
|
2018-12-19 14:46:18 +00:00
|
|
|
factory.registerFunction<FunctionAbs>(FunctionFactory::CaseInsensitive);
|
2018-11-26 16:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|