#include #include namespace DB { namespace ErrorCodes { extern const int LOGICAL_ERROR; } namespace { template struct BitOrImpl { using ResultType = typename NumberTraits::ResultOfBit::Type; static constexpr bool allow_fixed_string = true; static constexpr bool allow_string_integer = false; 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(ErrorCodes::LOGICAL_ERROR, "BitOrImpl expected an integral type"); return b.CreateOr(left, right); } #endif }; struct NameBitOr { static constexpr auto name = "bitOr"; }; using FunctionBitOr = BinaryArithmeticOverloadResolver; } REGISTER_FUNCTION(BitOr) { factory.registerFunction(); } }