2017-04-01 09:19:00 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/FunctionsStringArray.h>
|
2019-12-29 01:13:17 +00:00
|
|
|
|
2014-08-22 00:57:20 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
void registerFunctionsStringArray(FunctionFactory & factory)
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
factory.registerFunction<FunctionExtractAll>();
|
|
|
|
factory.registerFunction<FunctionAlphaTokens>();
|
2021-06-19 12:33:36 +00:00
|
|
|
factory.registerFunction<FunctionSplitByNonAlpha>();
|
|
|
|
factory.registerFunction<FunctionSplitByWhitespace>();
|
2017-04-01 07:20:54 +00:00
|
|
|
factory.registerFunction<FunctionSplitByChar>();
|
|
|
|
factory.registerFunction<FunctionSplitByString>();
|
2021-05-13 02:37:09 +00:00
|
|
|
factory.registerFunction<FunctionSplitByRegexp>();
|
2017-04-01 07:20:54 +00:00
|
|
|
factory.registerFunction<FunctionArrayStringConcat>();
|
2014-08-22 00:57:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|