2022-11-09 08:01:05 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#if USE_AWS_S3
|
|
|
|
|
|
|
|
# include <Storages/StorageHudi.h>
|
2023-01-29 08:28:48 +00:00
|
|
|
# include <TableFunctions/ITableFunctionDataLake.h>
|
2022-11-09 08:01:05 +00:00
|
|
|
# include <TableFunctions/TableFunctionFactory.h>
|
|
|
|
# include "registerTableFunctions.h"
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2023-01-29 08:28:48 +00:00
|
|
|
struct TableFunctionHudiName
|
2022-11-09 08:01:05 +00:00
|
|
|
{
|
2023-01-29 08:28:48 +00:00
|
|
|
static constexpr auto name = "hudi";
|
|
|
|
};
|
2023-02-13 08:29:22 +00:00
|
|
|
using TableFunctionHudi = ITableFunctionDataLake<TableFunctionHudiName, StorageHudi, StorageS3::Configuration>;
|
2022-11-09 08:01:05 +00:00
|
|
|
|
|
|
|
void registerTableFunctionHudi(TableFunctionFactory & factory)
|
|
|
|
{
|
2022-11-11 02:42:18 +00:00
|
|
|
factory.registerFunction<TableFunctionHudi>(
|
|
|
|
{.documentation
|
|
|
|
= {R"(The table function can be used to read the Hudi table stored on object store.)",
|
|
|
|
Documentation::Examples{{"hudi", "SELECT * FROM hudi(url, access_key_id, secret_access_key)"}},
|
|
|
|
Documentation::Categories{"DataLake"}},
|
2022-11-17 09:16:47 +00:00
|
|
|
.allow_readonly = false});
|
2022-11-09 08:01:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|