2018-09-08 22:04:39 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2018-11-25 23:24:26 +00:00
|
|
|
class FunctionFactory;
|
|
|
|
|
2018-09-08 22:04:39 +00:00
|
|
|
void registerFunctionCurrentDatabase(FunctionFactory &);
|
|
|
|
void registerFunctionHostName(FunctionFactory &);
|
|
|
|
void registerFunctionVisibleWidth(FunctionFactory &);
|
|
|
|
void registerFunctionToTypeName(FunctionFactory &);
|
|
|
|
void registerFunctionGetSizeOfEnumType(FunctionFactory &);
|
|
|
|
void registerFunctionToColumnTypeName(FunctionFactory &);
|
|
|
|
void registerFunctionDumpColumnStructure(FunctionFactory &);
|
|
|
|
void registerFunctionDefaultValueOfArgumentType(FunctionFactory &);
|
|
|
|
void registerFunctionBlockSize(FunctionFactory &);
|
|
|
|
void registerFunctionBlockNumber(FunctionFactory &);
|
|
|
|
void registerFunctionRowNumberInBlock(FunctionFactory &);
|
|
|
|
void registerFunctionRowNumberInAllBlocks(FunctionFactory &);
|
|
|
|
void registerFunctionSleep(FunctionFactory &);
|
|
|
|
void registerFunctionSleepEachRow(FunctionFactory &);
|
|
|
|
void registerFunctionMaterialize(FunctionFactory &);
|
|
|
|
void registerFunctionIgnore(FunctionFactory &);
|
|
|
|
void registerFunctionIndexHint(FunctionFactory &);
|
|
|
|
void registerFunctionIdentity(FunctionFactory &);
|
|
|
|
void registerFunctionArrayJoin(FunctionFactory &);
|
|
|
|
void registerFunctionReplicate(FunctionFactory &);
|
|
|
|
void registerFunctionBar(FunctionFactory &);
|
|
|
|
void registerFunctionHasColumnInTable(FunctionFactory &);
|
|
|
|
void registerFunctionIsFinite(FunctionFactory &);
|
|
|
|
void registerFunctionIsInfinite(FunctionFactory &);
|
|
|
|
void registerFunctionIsNaN(FunctionFactory &);
|
|
|
|
void registerFunctionThrowIf(FunctionFactory &);
|
|
|
|
void registerFunctionVersion(FunctionFactory &);
|
|
|
|
void registerFunctionUptime(FunctionFactory &);
|
|
|
|
void registerFunctionTimeZone(FunctionFactory &);
|
|
|
|
void registerFunctionRunningAccumulate(FunctionFactory &);
|
|
|
|
void registerFunctionRunningDifference(FunctionFactory &);
|
2018-09-08 22:16:30 +00:00
|
|
|
void registerFunctionRunningDifferenceStartingWithFirstValue(FunctionFactory &);
|
2018-09-08 22:04:39 +00:00
|
|
|
void registerFunctionFinalizeAggregation(FunctionFactory &);
|
|
|
|
void registerFunctionToLowCardinality(FunctionFactory &);
|
2018-09-08 22:16:30 +00:00
|
|
|
void registerFunctionLowCardinalityIndices(FunctionFactory &);
|
2018-09-08 22:04:39 +00:00
|
|
|
void registerFunctionLowCardinalityKeys(FunctionFactory &);
|
|
|
|
void registerFunctionsIn(FunctionFactory &);
|
2018-11-30 14:49:35 +00:00
|
|
|
void registerFunctionJoinGet(FunctionFactory &);
|
2019-01-18 15:44:53 +00:00
|
|
|
void registerFunctionFilesystem(FunctionFactory &);
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
void registerFunctionsMiscellaneous(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
registerFunctionCurrentDatabase(factory);
|
|
|
|
registerFunctionHostName(factory);
|
|
|
|
registerFunctionVisibleWidth(factory);
|
|
|
|
registerFunctionToTypeName(factory);
|
|
|
|
registerFunctionGetSizeOfEnumType(factory);
|
|
|
|
registerFunctionToColumnTypeName(factory);
|
|
|
|
registerFunctionDumpColumnStructure(factory);
|
|
|
|
registerFunctionDefaultValueOfArgumentType(factory);
|
|
|
|
registerFunctionBlockSize(factory);
|
|
|
|
registerFunctionBlockNumber(factory);
|
|
|
|
registerFunctionRowNumberInBlock(factory);
|
|
|
|
registerFunctionRowNumberInAllBlocks(factory);
|
|
|
|
registerFunctionSleep(factory);
|
|
|
|
registerFunctionSleepEachRow(factory);
|
|
|
|
registerFunctionMaterialize(factory);
|
|
|
|
registerFunctionIgnore(factory);
|
|
|
|
registerFunctionIndexHint(factory);
|
|
|
|
registerFunctionIdentity(factory);
|
|
|
|
registerFunctionArrayJoin(factory);
|
|
|
|
registerFunctionReplicate(factory);
|
|
|
|
registerFunctionBar(factory);
|
|
|
|
registerFunctionHasColumnInTable(factory);
|
|
|
|
registerFunctionIsFinite(factory);
|
|
|
|
registerFunctionIsInfinite(factory);
|
|
|
|
registerFunctionIsNaN(factory);
|
|
|
|
registerFunctionThrowIf(factory);
|
|
|
|
registerFunctionVersion(factory);
|
|
|
|
registerFunctionUptime(factory);
|
|
|
|
registerFunctionTimeZone(factory);
|
|
|
|
registerFunctionRunningAccumulate(factory);
|
|
|
|
registerFunctionRunningDifference(factory);
|
2018-09-08 22:16:30 +00:00
|
|
|
registerFunctionRunningDifferenceStartingWithFirstValue(factory);
|
2018-09-08 22:04:39 +00:00
|
|
|
registerFunctionFinalizeAggregation(factory);
|
|
|
|
registerFunctionToLowCardinality(factory);
|
2018-09-08 22:16:30 +00:00
|
|
|
registerFunctionLowCardinalityIndices(factory);
|
2018-09-08 22:04:39 +00:00
|
|
|
registerFunctionLowCardinalityKeys(factory);
|
|
|
|
registerFunctionsIn(factory);
|
2018-11-30 14:49:35 +00:00
|
|
|
registerFunctionJoinGet(factory);
|
2019-01-18 15:44:53 +00:00
|
|
|
registerFunctionFilesystem(factory);
|
2018-09-08 22:04:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|