mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
25 lines
655 B
C++
25 lines
655 B
C++
#include <TableFunctions/registerTableFunctions.h>
|
|
#include <TableFunctions/TableFunctionFactory.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void registerTableFunctionMerge(TableFunctionFactory & factory);
|
|
void registerTableFunctionRemote(TableFunctionFactory & factory);
|
|
void registerTableFunctionShardByHash(TableFunctionFactory & factory);
|
|
void registerTableFunctionNumbers(TableFunctionFactory & factory);
|
|
|
|
|
|
void registerTableFunctions()
|
|
{
|
|
auto & factory = TableFunctionFactory::instance();
|
|
|
|
registerTableFunctionMerge(factory);
|
|
registerTableFunctionRemote(factory);
|
|
registerTableFunctionShardByHash(factory);
|
|
registerTableFunctionNumbers(factory);
|
|
}
|
|
|
|
}
|