ClickHouse/dbms/src/Functions/sleep.cpp

14 lines
226 B
C++
Raw Normal View History

#include <Functions/sleep.h>
#include <Functions/FunctionFactory.h>
namespace DB
{
void registerFunctionSleep(FunctionFactory & factory)
{
factory.registerFunction<FunctionSleep<FunctionSleepVariant::PerBlock>>();
}
}