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