#include #include namespace DB { template struct BitXorImpl { using ResultType = typename NumberTraits::ResultOfBit::Type; static constexpr 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("BitXorImpl expected an integral type", ErrorCodes::LOGICAL_ERROR); return b.CreateXor(left, right); } #endif }; struct NameBitXor { static constexpr auto name = "bitXor"; }; using FunctionBitXor = FunctionBinaryArithmetic; void registerFunctionBitXor(FunctionFactory & factory) { factory.registerFunction(); } }