| 351 | |
| 352 | |
| 353 | void registerTableFunctionRemote(TableFunctionFactory & factory) |
| 354 | { |
| 355 | factory.registerFunction("remote", [] () -> TableFunctionPtr { return std::make_shared<TableFunctionRemote>("remote"); }); |
| 356 | factory.registerFunction("remoteSecure", [] () -> TableFunctionPtr { return std::make_shared<TableFunctionRemote>("remote", /* secure = */ true); }); |
| 357 | factory.registerFunction("cluster", [] () -> TableFunctionPtr { return std::make_shared<TableFunctionRemote>("cluster"); }); |
| 358 | factory.registerFunction("clusterAllReplicas", [] () -> TableFunctionPtr { return std::make_shared<TableFunctionRemote>("clusterAllReplicas"); }); |
| 359 | } |
| 360 | |
| 361 | } |
no test coverage detected