mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
14 lines
226 B
C++
14 lines
226 B
C++
#include <Functions/sleep.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void registerFunctionSleep(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionSleep<FunctionSleepVariant::PerBlock>>();
|
|
}
|
|
|
|
}
|