ClickHouse/src/Functions/sleep.cpp

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

14 lines
197 B
C++
Raw Normal View History

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