1 | #include "arrayEnumerateExtended.h" |
---|---|
2 | #include <Functions/FunctionFactory.h> |
3 | |
4 | |
5 | namespace DB |
6 | { |
7 | |
8 | |
9 | class FunctionArrayEnumerateDense : public FunctionArrayEnumerateExtended<FunctionArrayEnumerateDense> |
10 | { |
11 | using Base = FunctionArrayEnumerateExtended<FunctionArrayEnumerateDense>; |
12 | public: |
13 | static constexpr auto name = "arrayEnumerateDense"; |
14 | using Base::create; |
15 | }; |
16 | |
17 | void registerFunctionArrayEnumerateDense(FunctionFactory & factory) |
18 | { |
19 | factory.registerFunction<FunctionArrayEnumerateDense>(); |
20 | } |
21 | |
22 | } |
23 |