2018-11-26 16:20:40 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/FunctionBinaryArithmetic.h>
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2020-02-25 18:10:48 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int LOGICAL_ERROR;
|
|
|
|
}
|
2018-11-26 16:20:40 +00:00
|
|
|
|
|
|
|
template <typename A, typename B>
|
|
|
|
struct DivideFloatingImpl
|
|
|
|
{
|
|
|
|
using ResultType = typename NumberTraits::ResultOfFloatingPointDivision<A, B>::Type;
|
2020-02-14 07:11:37 +00:00
|
|
|
static const constexpr bool allow_fixed_string = false;
|
2021-08-30 06:37:23 +00:00
|
|
|
static const constexpr bool allow_string_integer = false;
|
2018-11-26 16:20:40 +00:00
|
|
|
|
|
|
|
template <typename Result = ResultType>
|
2020-08-19 11:52:17 +00:00
|
|
|
static inline NO_SANITIZE_UNDEFINED Result apply(A a [[maybe_unused]], B b [[maybe_unused]])
|
2018-11-26 16:20:40 +00:00
|
|
|
{
|
2020-10-07 11:32:57 +00:00
|
|
|
return static_cast<Result>(a) / b;
|
2018-11-26 16:20:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#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"; };
|
2020-09-05 14:12:47 +00:00
|
|
|
using FunctionDivide = BinaryArithmeticOverloadResolver<DivideFloatingImpl, NameDivide>;
|
2018-11-26 16:20:40 +00:00
|
|
|
|
|
|
|
void registerFunctionDivide(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionDivide>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|