mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +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>>();
|
|
}
|
|
|
|
}
|