ClickHouse/dbms/src/Functions/registerFunctionsTuple.cpp
alexey-milovidov 5b1eaba276
Every function in its own file, part 6 (#3661)
* Every function in its own file, part 6 [#CLICKHOUSE-2]

* Every function in its own file, part 6 [#CLICKHOUSE-2]

* Every function in its own file, part 6 [#CLICKHOUSE-2]
2018-11-26 02:24:26 +03:00

16 lines
283 B
C++

namespace DB
{
class FunctionFactory;
void registerFunctionTuple(FunctionFactory &);
void registerFunctionTupleElement(FunctionFactory &);
void registerFunctionsTuple(FunctionFactory & factory)
{
registerFunctionTuple(factory);
registerFunctionTupleElement(factory);
}
}