mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
14 lines
263 B
C++
14 lines
263 B
C++
|
#include <Functions/runningDifference.h>
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
void registerFunctionRunningDifferenceStartingWithFirstValue(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionRunningDifferenceImpl<false>>();
|
||
|
}
|
||
|
|
||
|
}
|