mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
37 lines
966 B
C++
37 lines
966 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionBinaryArithmetic.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
template <typename A, typename B>
|
|
struct DivideIntegralOrZeroImpl
|
|
{
|
|
using ResultType = typename NumberTraits::ResultOfIntegerDivision<A, B>::Type;
|
|
static const constexpr bool allow_fixed_string = false;
|
|
|
|
template <typename Result = ResultType>
|
|
static inline Result apply(A a, B b)
|
|
{
|
|
if (unlikely(divisionLeadsToFPE(a, b)))
|
|
return 0;
|
|
|
|
return DivideIntegralImpl<A, B>::template apply<Result>(a, b);
|
|
}
|
|
|
|
#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>();
|
|
}
|
|
|
|
}
|