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