2019-05-31 07:27:14 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <TableFunctions/ITableFunctionFileLike.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2019-09-22 22:13:42 +00:00
|
|
|
|
|
|
|
class Context;
|
|
|
|
|
2019-06-14 12:56:25 +00:00
|
|
|
/* s3(source, format, structure) - creates a temporary storage for a file in S3
|
2019-05-31 07:27:14 +00:00
|
|
|
*/
|
|
|
|
class TableFunctionS3 : public ITableFunctionFileLike
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr auto name = "s3";
|
|
|
|
std::string getName() const override
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
StoragePtr getStorage(
|
2019-09-22 22:13:42 +00:00
|
|
|
const String & source,
|
|
|
|
const String & format,
|
|
|
|
const ColumnsDescription & columns,
|
|
|
|
Context & global_context,
|
2019-11-19 12:46:07 +00:00
|
|
|
const std::string & table_name,
|
|
|
|
const String & compression_method) const override;
|
2019-05-31 07:27:14 +00:00
|
|
|
};
|
2019-09-22 22:13:42 +00:00
|
|
|
|
2019-05-31 07:27:14 +00:00
|
|
|
}
|