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