1 | #include <Functions/sleep.h> |
---|---|
2 | #include <Functions/FunctionFactory.h> |
3 | |
4 | |
5 | namespace DB |
6 | { |
7 | |
8 | void registerFunctionSleepEachRow(FunctionFactory & factory) |
9 | { |
10 | factory.registerFunction<FunctionSleep<FunctionSleepVariant::PerRow>>(); |
11 | } |
12 | |
13 | } |
14 |