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

14 lines
231 B
C++

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