1 | #include <Functions/FunctionFactory.h> |
---|---|
2 | #include <Functions/FunctionsStringArray.h> |
3 | |
4 | |
5 | namespace DB |
6 | { |
7 | |
8 | void registerFunctionsStringArray(FunctionFactory & factory) |
9 | { |
10 | factory.registerFunction<FunctionExtractAll>(); |
11 | factory.registerFunction<FunctionAlphaTokens>(); |
12 | factory.registerFunction<FunctionSplitByChar>(); |
13 | factory.registerFunction<FunctionSplitByString>(); |
14 | factory.registerFunction<FunctionArrayStringConcat>(); |
15 | } |
16 | |
17 | } |
18 |