aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/sleepEachRow.cpp
blob: 595beb15e198ea04bfa4902ae5e271194048aa28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <Functions/sleep.h>
#include <Functions/FunctionFactory.h>


namespace DB
{

REGISTER_FUNCTION(SleepEachRow)
{
    factory.registerFunction<FunctionSleep<FunctionSleepVariant::PerRow>>();
}

}