#include #include #include #include #include #include #include namespace DB { namespace ErrorCodes { extern const int TOO_SLOW; extern const int ILLEGAL_COLUMN; extern const int BAD_ARGUMENTS; } /** sleep(seconds) - the specified number of seconds sleeps each block. */ enum class FunctionSleepVariant { PerBlock, PerRow }; template class FunctionSleep : public IFunction { public: static constexpr auto name = variant == FunctionSleepVariant::PerBlock ? "sleep" : "sleepEachRow"; static FunctionPtr create(const Context &) { return std::make_shared>(); } /// Get the name of the function. String getName() const override { return name; } /// Do not sleep during query analysis. bool isSuitableForConstantFolding() const override { return false; } size_t getNumberOfArguments() const override { return 1; } DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override { WhichDataType which(arguments[0]); if (!which.isFloat() && !which.isNativeUInt()) throw Exception("Illegal type " + arguments[0]->getName() + " of argument of function " + getName() + ", expected Float64", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT); return std::make_shared(); } void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t /*input_rows_count*/) override { const IColumn * col = block.getByPosition(arguments[0]).column.get(); if (!col->isColumnConst()) throw Exception("The argument of function " + getName() + " must be constant.", ErrorCodes::ILLEGAL_COLUMN); Float64 seconds = applyVisitor(FieldVisitorConvertToNumber(), static_cast(*col).getField()); if (seconds < 0) throw Exception("Cannot sleep negative amount of time (not implemented)", ErrorCodes::BAD_ARGUMENTS); size_t size = col->size(); /// We do not sleep if the block is empty. if (size > 0) { unsigned useconds = seconds * (variant == FunctionSleepVariant::PerBlock ? 1 : size) * 1e6; /// When sleeping, the query cannot be cancelled. For abitily to cancel query, we limit sleep time. if (useconds > 3000000) /// The choice is arbitrary throw Exception("The maximum sleep time is 3000000 microseconds. Requested: " + toString(useconds), ErrorCodes::TOO_SLOW); ::usleep(useconds); } /// convertToFullColumn needed, because otherwise (constant expression case) function will not get called on each block. block.getByPosition(result).column = block.getByPosition(result).type->createColumnConst(size, 0u)->convertToFullColumnIfConst(); } }; }