aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/sleep.cpp
blob: abd1226b8cfd5b00bff35c8da1ebe8c1bea1632c (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(Sleep)
{
    factory.registerFunction<FunctionSleep<FunctionSleepVariant::PerBlock>>();
}

}