AggregateFunctionFactory::AggregateFunctionFactory() { registerAggregateFunctionAvg(*this); registerAggregateFunctionCount(*this); registerAggregateFunctionGroupArray(*this); registerAggregateFunctionGroupUniqArray(*this); registerAggregateFunctionsQuantile(*this); registerAggregateFunctionsQuantileExact(*this); registerAggregateFunctionsQuantileExactWeighted(*this); registerAggregateFunctionsQuantileDeterministic(*this); registerAggregateFunctionsQuantileTiming(*this); registerAggregateFunctionsQuantileTDigest(*this); registerAggregateFunctionsSequenceMatch(*this); registerAggregateFunctionsMinMaxAny(*this); registerAggregateFunctionsStatistics(*this); registerAggregateFunctionSum(*this); registerAggregateFunctionsUniq(*this); registerAggregateFunctionUniqUpTo(*this); registerAggregateFunctionDebug(*this); }
void registerAggregateFunctions() { { auto & factory = AggregateFunctionFactory::instance(); registerAggregateFunctionAvg(factory); registerAggregateFunctionCount(factory); registerAggregateFunctionGroupArray(factory); registerAggregateFunctionGroupUniqArray(factory); registerAggregateFunctionGroupArrayInsertAt(factory); registerAggregateFunctionsQuantile(factory); registerAggregateFunctionsSequenceMatch(factory); registerAggregateFunctionWindowFunnel(factory); registerAggregateFunctionRate(factory); registerAggregateFunctionsMinMaxAny(factory); registerAggregateFunctionsStatisticsStable(factory); registerAggregateFunctionsStatisticsSimple(factory); registerAggregateFunctionSum(factory); registerAggregateFunctionSumMap(factory); registerAggregateFunctionsUniq(factory); registerAggregateFunctionUniqCombined(factory); registerAggregateFunctionUniqUpTo(factory); registerAggregateFunctionTopK(factory); registerAggregateFunctionsBitwise(factory); registerAggregateFunctionsMaxIntersections(factory); registerAggregateFunctionHistogram(factory); registerAggregateFunctionRetention(factory); } { auto & factory = AggregateFunctionCombinatorFactory::instance(); registerAggregateFunctionCombinatorIf(factory); registerAggregateFunctionCombinatorArray(factory); registerAggregateFunctionCombinatorForEach(factory); registerAggregateFunctionCombinatorState(factory); registerAggregateFunctionCombinatorMerge(factory); registerAggregateFunctionCombinatorNull(factory); } }