#include #include namespace DB { namespace ErrorCodes { extern const int LOGICAL_ERROR; } template struct BitShiftLeftImpl { using ResultType = typename NumberTraits::ResultOfBit::Type; static const constexpr bool allow_fixed_string = false; template static inline NO_SANITIZE_UNDEFINED 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("BitShiftLeftImpl expected an integral type", ErrorCodes::LOGICAL_ERROR); return b.CreateShl(left, right); } #endif }; struct NameBitShiftLeft { static constexpr auto name = "bitShiftLeft"; }; using FunctionBitShiftLeft = FunctionBinaryArithmetic; void registerFunctionBitShiftLeft(FunctionFactory & factory) { factory.registerFunction(); } }