#include #include namespace DB { namespace ErrorCodes { extern const int LOGICAL_ERROR; } namespace { template struct BitXorImpl { using ResultType = typename NumberTraits::ResultOfBit::Type; static constexpr bool allow_fixed_string = true; static const 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, "BitXorImpl expected an integral type"); return b.CreateXor(left, right); } #endif }; struct NameBitXor { static constexpr auto name = "bitXor"; }; using FunctionBitXor = BinaryArithmeticOverloadResolver; } REGISTER_FUNCTION(BitXor) { factory.registerFunction(); } }