ClickHouse/src/Functions/extractAllGroupsHorizontal.cpp

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

24 lines
407 B
C++
Raw Normal View History

#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>>();
}
}