mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
50a184acac
Split tests, fixed some error messages Fixed test and error reporting of extractGroups
24 lines
436 B
C++
24 lines
436 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
|
|
{
|
|
|
|
void registerFunctionExtractAllGroupsHorizontal(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionExtractAllGroups<HorizontalImpl>>();
|
|
}
|
|
|
|
}
|