ClickHouse/src/Functions/moduloOrZero.cpp

45 lines
1.2 KiB
C++
Raw Normal View History

2020-02-25 09:46:07 +00:00
#include <Functions/FunctionFactory.h>
#include <Functions/FunctionBinaryArithmetic.h>
namespace DB
{
template <typename A, typename B>
struct ModuloOrZeroImpl
{
using ResultType = typename NumberTraits::ResultOfModulo<A, B>::Type;
static const constexpr bool allow_fixed_string = false;
template <typename Result = ResultType>
static inline Result apply(A a, B b)
{
if constexpr (std::is_floating_point_v<ResultType>)
{
2020-07-21 14:07:09 +00:00
/// This computation is similar to `fmod` but the latter is not inlined and has 40 times worse performance.
2020-07-21 14:06:40 +00:00
return ResultType(a) - trunc(ResultType(a) / ResultType(b)) * ResultType(b);
}
else
{
if (unlikely(divisionLeadsToFPE(a, b)))
return 0;
return ModuloImpl<A, B>::template apply<Result>(a, b);
}
2020-02-25 09:46:07 +00:00
}
#if USE_EMBEDDED_COMPILER
static constexpr bool compilable = false; /// TODO implement the checks
#endif
};
struct NameModuloOrZero { static constexpr auto name = "moduloOrZero"; };
using FunctionModuloOrZero = FunctionBinaryArithmetic<ModuloOrZeroImpl, NameModuloOrZero>;
void registerFunctionModuloOrZero(FunctionFactory & factory)
{
factory.registerFunction<FunctionModuloOrZero>();
}
}