ClickHouse/src/Functions/runningDifferenceStartingWithFirstValue.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
234 B
C++
Raw Normal View History

#include <Functions/runningDifference.h>
#include <Functions/FunctionFactory.h>
namespace DB
{
REGISTER_FUNCTION(RunningDifferenceStartingWithFirstValue)
{
factory.registerFunction<FunctionRunningDifferenceImpl<false>>();
}
}