2017-04-21 17:47:27 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
2019-12-15 06:34:43 +00:00
|
|
|
#include <Functions/array/registerFunctionsArray.h>
|
2019-03-29 01:02:05 +00:00
|
|
|
#include <Functions/registerFunctions.h>
|
2017-04-21 17:47:27 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2018-09-08 22:16:30 +00:00
|
|
|
|
2017-04-21 17:47:27 +00:00
|
|
|
void registerFunctions()
|
|
|
|
{
|
|
|
|
auto & factory = FunctionFactory::instance();
|
|
|
|
|
|
|
|
registerFunctionsArithmetic(factory);
|
|
|
|
registerFunctionsArray(factory);
|
2017-12-25 19:10:25 +00:00
|
|
|
registerFunctionsTuple(factory);
|
2019-01-31 13:26:11 +00:00
|
|
|
registerFunctionsBitmap(factory);
|
2017-04-21 17:47:27 +00:00
|
|
|
registerFunctionsCoding(factory);
|
|
|
|
registerFunctionsComparison(factory);
|
|
|
|
registerFunctionsConditional(factory);
|
|
|
|
registerFunctionsConversion(factory);
|
|
|
|
registerFunctionsDateTime(factory);
|
|
|
|
registerFunctionsEmbeddedDictionaries(factory);
|
|
|
|
registerFunctionsExternalDictionaries(factory);
|
2017-10-17 12:02:30 +00:00
|
|
|
registerFunctionsExternalModels(factory);
|
2017-04-21 17:47:27 +00:00
|
|
|
registerFunctionsFormatting(factory);
|
|
|
|
registerFunctionsHashing(factory);
|
|
|
|
registerFunctionsHigherOrder(factory);
|
|
|
|
registerFunctionsLogical(factory);
|
|
|
|
registerFunctionsMiscellaneous(factory);
|
|
|
|
registerFunctionsRandom(factory);
|
|
|
|
registerFunctionsReinterpret(factory);
|
|
|
|
registerFunctionsRound(factory);
|
|
|
|
registerFunctionsString(factory);
|
|
|
|
registerFunctionsStringArray(factory);
|
|
|
|
registerFunctionsStringSearch(factory);
|
2019-03-29 01:02:05 +00:00
|
|
|
registerFunctionsStringRegex(factory);
|
2019-02-21 05:08:37 +00:00
|
|
|
registerFunctionsStringSimilarity(factory);
|
2017-04-21 17:47:27 +00:00
|
|
|
registerFunctionsURL(factory);
|
|
|
|
registerFunctionsVisitParam(factory);
|
|
|
|
registerFunctionsMath(factory);
|
|
|
|
registerFunctionsGeo(factory);
|
|
|
|
registerFunctionsNull(factory);
|
2017-06-28 21:45:15 +00:00
|
|
|
registerFunctionsFindCluster(factory);
|
2019-03-14 02:55:04 +00:00
|
|
|
registerFunctionsJSON(factory);
|
2019-07-29 22:26:44 +00:00
|
|
|
registerFunctionsIntrospection(factory);
|
2019-08-04 14:01:04 +00:00
|
|
|
registerFunctionsConsistentHashing(factory);
|
2017-04-21 17:47:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|