mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
5b1eaba276
* 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]
16 lines
283 B
C++
16 lines
283 B
C++
namespace DB
|
|
{
|
|
|
|
class FunctionFactory;
|
|
|
|
void registerFunctionTuple(FunctionFactory &);
|
|
void registerFunctionTupleElement(FunctionFactory &);
|
|
|
|
void registerFunctionsTuple(FunctionFactory & factory)
|
|
{
|
|
registerFunctionTuple(factory);
|
|
registerFunctionTupleElement(factory);
|
|
}
|
|
|
|
}
|