mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
23 lines
515 B
C++
23 lines
515 B
C++
|
#include <Functions/arrayEnumerateExtended.h>
|
||
|
#include <Functions/FunctionFactory.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
|
||
|
class FunctionArrayEnumerateDense : public FunctionArrayEnumerateExtended<FunctionArrayEnumerateDense>
|
||
|
{
|
||
|
using Base = FunctionArrayEnumerateExtended<FunctionArrayEnumerateDense>;
|
||
|
public:
|
||
|
static constexpr auto name = "arrayEnumerateDense";
|
||
|
using Base::create;
|
||
|
};
|
||
|
|
||
|
void registerFunctionArrayEnumerateDense(FunctionFactory & factory)
|
||
|
{
|
||
|
factory.registerFunction<FunctionArrayEnumerateDense>();
|
||
|
}
|
||
|
|
||
|
}
|