mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/FunctionBinaryArithmetic.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
template <typename A, typename B>
|
|
struct DivideFloatingImpl
|
|
{
|
|
using ResultType = typename NumberTraits::ResultOfFloatingPointDivision<A, B>::Type;
|
|
static const constexpr bool allow_decimal = true;
|
|
|
|
template <typename Result = ResultType>
|
|
static inline NO_SANITIZE_UNDEFINED Result apply(A a, B b)
|
|
{
|
|
return static_cast<Result>(a) / b;
|
|
}
|
|
|
|
#if USE_EMBEDDED_COMPILER
|
|
static constexpr bool compilable = true;
|
|
|
|
static inline llvm::Value * compile(llvm::IRBuilder<> & b, llvm::Value * left, llvm::Value * right, bool)
|
|
{
|
|
if (left->getType()->isIntegerTy())
|
|
throw Exception("DivideFloatingImpl expected a floating-point type", ErrorCodes::LOGICAL_ERROR);
|
|
return b.CreateFDiv(left, right);
|
|
}
|
|
#endif
|
|
};
|
|
|
|
struct NameDivide { static constexpr auto name = "divide"; };
|
|
using FunctionDivide = FunctionBinaryArithmetic<DivideFloatingImpl, NameDivide>;
|
|
|
|
void registerFunctionDivide(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionDivide>();
|
|
}
|
|
|
|
}
|