ClickHouse/dbms/src/Functions/FunctionsStringArray.cpp

18 lines
471 B
C++
Raw Normal View History

#include <Functions/FunctionFactory.h>
#include <Functions/FunctionsStringArray.h>
2019-12-15 06:34:43 +00:00
#include "registerFunctions.h"
namespace DB
{
void registerFunctionsStringArray(FunctionFactory & factory)
{
factory.registerFunction<FunctionExtractAll>();
factory.registerFunction<FunctionAlphaTokens>();
factory.registerFunction<FunctionSplitByChar>();
factory.registerFunction<FunctionSplitByString>();
factory.registerFunction<FunctionArrayStringConcat>();
}
}