#include #include namespace DB { namespace ErrorCodes { extern const int LOGICAL_ERROR; } template struct BitOrImpl { using ResultType = typename NumberTraits::ResultOfBit::Type; static constexpr const bool allow_fixed_string = true; template static inline Result apply(A a, B b) { return static_cast(a) | static_cast(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("BitOrImpl expected an integral type", ErrorCodes::LOGICAL_ERROR); return b.CreateOr(left, right); } #endif }; struct NameBitOr { static constexpr auto name = "bitOr"; }; using FunctionBitOr = FunctionBinaryArithmetic; void registerFunctionBitOr(FunctionFactory & factory) { factory.registerFunction(); } }