#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_fixed_string = false; static const constexpr bool allow_string_integer = false; template static NO_SANITIZE_UNDEFINED Result apply(A a [[maybe_unused]], B b [[maybe_unused]]) { return static_cast(a) / b; } #if USE_EMBEDDED_COMPILER static constexpr bool compilable = true; static llvm::Value * compile(llvm::IRBuilder<> & b, llvm::Value * left, llvm::Value * right, bool) { if (left->getType()->isIntegerTy()) throw Exception(ErrorCodes::LOGICAL_ERROR, "DivideFloatingImpl expected a floating-point type"); return b.CreateFDiv(left, right); } #endif }; struct NameDivide { static constexpr auto name = "divide"; }; using FunctionDivide = BinaryArithmeticOverloadResolver; REGISTER_FUNCTION(Divide) { factory.registerFunction(); } }