2018-11-26 16:20:40 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/FunctionBinaryArithmetic.h>
|
|
|
|
|
2019-07-31 01:05:33 +00:00
|
|
|
|
2018-11-26 16:20:40 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
template <typename A, typename B>
|
|
|
|
struct DivideIntegralOrZeroImpl
|
|
|
|
{
|
|
|
|
using ResultType = typename NumberTraits::ResultOfIntegerDivision<A, B>::Type;
|
2020-02-14 07:11:37 +00:00
|
|
|
static const constexpr bool allow_fixed_string = false;
|
2018-11-26 16:20:40 +00:00
|
|
|
|
|
|
|
template <typename Result = ResultType>
|
|
|
|
static inline Result apply(A a, B b)
|
|
|
|
{
|
2019-07-31 01:05:33 +00:00
|
|
|
if (unlikely(divisionLeadsToFPE(a, b)))
|
|
|
|
return 0;
|
|
|
|
|
2019-07-31 18:04:24 +00:00
|
|
|
return DivideIntegralImpl<A, B>::template apply<Result>(a, b);
|
2018-11-26 16:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if USE_EMBEDDED_COMPILER
|
|
|
|
static constexpr bool compilable = false; /// TODO implement the checks
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NameIntDivOrZero { static constexpr auto name = "intDivOrZero"; };
|
|
|
|
using FunctionIntDivOrZero = FunctionBinaryArithmetic<DivideIntegralOrZeroImpl, NameIntDivOrZero>;
|
|
|
|
|
|
|
|
void registerFunctionIntDivOrZero(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionIntDivOrZero>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|