#include #include namespace DB { namespace ErrorCodes { extern const int LOGICAL_ERROR; } template struct DivideFloatingImpl { using ResultType = typename NumberTraits::ResultOfFloatingPointDivision::Type; static const constexpr bool allow_decimal = true; static const constexpr bool allow_fixed_string = false; template static inline NO_SANITIZE_UNDEFINED Result apply(A a, B b) { return static_cast(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; void registerFunctionDivide(FunctionFactory & factory) { factory.registerFunction(); } }