mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
4088c0a7f3
Automated register all functions with below naming convention by iterating through the symbols: void DB::registerXXX(DB::FunctionFactory &)
24 lines
407 B
C++
24 lines
407 B
C++
#include <Functions/FunctionFactory.h>
|
|
#include <Functions/extractAllGroups.h>
|
|
|
|
namespace
|
|
{
|
|
|
|
struct HorizontalImpl
|
|
{
|
|
static constexpr auto Kind = DB::ExtractAllGroupsResultKind::HORIZONTAL;
|
|
static constexpr auto Name = "extractAllGroupsHorizontal";
|
|
};
|
|
|
|
}
|
|
|
|
namespace DB
|
|
{
|
|
|
|
REGISTER_FUNCTION(ExtractAllGroupsHorizontal)
|
|
{
|
|
factory.registerFunction<FunctionExtractAllGroups<HorizontalImpl>>();
|
|
}
|
|
|
|
}
|