mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 20:02:05 +00:00
aad2856eba
* Build fixes (clang 7.0.0+) * better * wip * wip * fix * fix * wip * fix * clean * clean * CLICKHOUSE-4179 WIP * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * cf * wip * wip * wip * wip * cf * wip * wip# Please enter the commit message for your changes. Lines starting * wip# Please enter the commit message for your changes. Lines starting * cf * wip# Please enter the commit message for your changes. Lines starting * wip * cf * wip * wip * clean * clean * clean * clean * wip * wip * wip * cf * wip * wip * wip * cf * clean * wip * clean * cf * clean * clean * test * clean * wip * cf * wip * clean * clean * wip * wip * clean * cf * clean * Requested changes * cf * no convertToFullColumnIfConst * clean * clean * clean * fix * Remove comment
22 lines
544 B
C++
22 lines
544 B
C++
#include "Functions/FunctionFactory.h"
|
|
#include "arrayEnumerateRanked.h"
|
|
|
|
|
|
namespace DB
|
|
{
|
|
class FunctionArrayEnumerateUniqRanked : public FunctionArrayEnumerateRankedExtended<FunctionArrayEnumerateUniqRanked>
|
|
{
|
|
using Base = FunctionArrayEnumerateRankedExtended<FunctionArrayEnumerateUniqRanked>;
|
|
|
|
public:
|
|
static constexpr auto name = "arrayEnumerateUniqRanked";
|
|
using Base::create;
|
|
};
|
|
|
|
void registerFunctionArrayEnumerateUniqRanked(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionArrayEnumerateUniqRanked>();
|
|
}
|
|
|
|
}
|