#include #include #include "registerFunctions.h" namespace DB { template struct BitAndImpl { using ResultType = typename NumberTraits::ResultOfBit::Type; 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("BitAndImpl expected an integral type", ErrorCodes::LOGICAL_ERROR); return b.CreateAnd(left, right); } #endif }; struct NameBitAnd { static constexpr auto name = "bitAnd"; }; using FunctionBitAnd = FunctionBinaryArithmetic; void registerFunctionBitAnd(FunctionFactory & factory) { factory.registerFunction(); } }