ClickHouse/src/Functions/sleep.cpp
2020-04-03 18:14:31 +03:00

14 lines
226 B
C++

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