| 1 | #include <Functions/runningDifference.h> |
|---|---|
| 2 | #include <Functions/FunctionFactory.h> |
| 3 | |
| 4 | |
| 5 | namespace DB |
| 6 | { |
| 7 | |
| 8 | void registerFunctionRunningDifference(FunctionFactory & factory) |
| 9 | { |
| 10 | factory.registerFunction<FunctionRunningDifferenceImpl<true>>(); |
| 11 | } |
| 12 | |
| 13 | } |
| 14 |