1 | #include "arrayIndex.h" |
---|---|
2 | #include <Functions/FunctionFactory.h> |
3 | |
4 | |
5 | namespace DB |
6 | { |
7 | |
8 | struct NameCountEqual { static constexpr auto name = "countEqual"; }; |
9 | |
10 | using FunctionCountEqual = FunctionArrayIndex<IndexCount, NameCountEqual>; |
11 | |
12 | void registerFunctionCountEqual(FunctionFactory & factory) |
13 | { |
14 | factory.registerFunction<FunctionCountEqual>(); |
15 | } |
16 | |
17 | |
18 | } |
19 |