ClickHouse/dbms/src/Functions/sleepEachRow.cpp

14 lines
231 B
C++
Raw Normal View History

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