ClickHouse/src/TableFunctions/TableFunctionS3.h

46 lines
941 B
C++
Raw Normal View History

2019-05-31 07:27:14 +00:00
#pragma once
2019-12-06 14:37:21 +00:00
#include <Common/config.h>
#if USE_AWS_S3
#include <TableFunctions/ITableFunction.h>
2019-05-31 07:27:14 +00:00
namespace DB
{
2019-09-22 22:13:42 +00:00
class Context;
/* s3(source, [access_key_id, secret_access_key,] format, structure) - creates a temporary storage for a file in S3
2019-05-31 07:27:14 +00:00
*/
class TableFunctionS3 : public ITableFunction
2019-05-31 07:27:14 +00:00
{
public:
static constexpr auto name = "s3";
std::string getName() const override
{
return name;
}
private:
StoragePtr executeImpl(
const ASTPtr & ast_function,
const Context & context,
const std::string & table_name) const override;
2020-03-18 00:57:00 +00:00
static StoragePtr getStorage(
2019-09-22 22:13:42 +00:00
const String & source,
const String & access_key_id,
const String & secret_access_key,
2019-09-22 22:13:42 +00:00
const String & format,
const ColumnsDescription & columns,
Context & global_context,
const std::string & table_name,
2020-03-18 00:57:00 +00:00
const String & compression_method);
2019-05-31 07:27:14 +00:00
};
2019-09-22 22:13:42 +00:00
2019-05-31 07:27:14 +00:00
}
2019-12-06 14:37:21 +00:00
#endif