dbms: addition to prev. revision [#METR-15987].

This commit is contained in:
Alexey Milovidov 2015-06-03 06:32:37 +03:00
parent c341bd2c60
commit 1cf67bdede
2 changed files with 3 additions and 1 deletions

View File

@ -29,6 +29,7 @@ void registerFunctionsStringSearch(FunctionFactory &);
void registerFunctionsURL(FunctionFactory &);
void registerFunctionsVisitParam(FunctionFactory &);
void registerFunctionsMath(FunctionFactory &);
void registerFunctionsTransform(FunctionFactory &);
FunctionFactory::FunctionFactory()
@ -55,6 +56,7 @@ FunctionFactory::FunctionFactory()
registerFunctionsURL(*this);
registerFunctionsVisitParam(*this);
registerFunctionsMath(*this);
registerFunctionsTransform(*this);
}

View File

@ -76,7 +76,7 @@ DataTypePtr getSmallestCommonNumericType(const IDataType & t1, const IDataType &
namespace DB
{
void registerFunctionsMiscellaneous(FunctionFactory & factory)
void registerFunctionsTransform(FunctionFactory & factory)
{
factory.registerFunction<FunctionTransform>();
}