ClickHouse/src/Functions/sleepEachRow.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
202 B
C++
Raw Normal View History

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