ClickHouse/src/Functions/sleep.cpp

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>>();
}
}