Skip to content

Commit

Permalink
commit again
Browse files Browse the repository at this point in the history
  • Loading branch information
taiyang-li committed Jan 16, 2025
1 parent 88fb149 commit 6b87b7f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cpp-ch/local-engine/Common/CHUtil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ extern const ServerSettingsUInt64 thread_pool_queue_size;
extern const ServerSettingsUInt64 max_io_thread_pool_size;
extern const ServerSettingsUInt64 io_thread_pool_queue_size;
}

extern void registerAggregateFunctionUniqHyperLogLogPlusPlus(AggregateFunctionFactory &);
}

namespace local_engine
Expand Down Expand Up @@ -906,7 +908,7 @@ extern void registerAggregateFunctionCombinatorPartialMerge(AggregateFunctionCom
extern void registerAggregateFunctionsBloomFilter(AggregateFunctionFactory &);
extern void registerAggregateFunctionSparkAvg(AggregateFunctionFactory &);
extern void registerAggregateFunctionRowNumGroup(AggregateFunctionFactory &);
extern void registerAggregateFunctionUniqHyperLogLogPlusPlus(AggregateFunctionFactory & factory);


extern void registerFunctions(FunctionFactory &);

Expand All @@ -919,7 +921,7 @@ void registerAllFunctions()
registerAggregateFunctionsBloomFilter(agg_factory);
registerAggregateFunctionSparkAvg(agg_factory);
registerAggregateFunctionRowNumGroup(agg_factory);
registerAggregateFunctionUniqHyperLogLogPlusPlus(agg_factory);
DB::registerAggregateFunctionUniqHyperLogLogPlusPlus(agg_factory);

/// register aggregate function combinators from local_engine
auto & combinator_factory = AggregateFunctionCombinatorFactory::instance();
Expand Down

0 comments on commit 6b87b7f

Please sign in to comment.