ClickHouse/dbms/src/TableFunctions/TableFunctionS3.h
2019-09-23 01:13:42 +03:00

32 lines
599 B
C++

#pragma once
#include <TableFunctions/ITableFunctionFileLike.h>
namespace DB
{
class Context;
/* s3(source, format, structure) - creates a temporary storage for a file in S3
*/
class TableFunctionS3 : public ITableFunctionFileLike
{
public:
static constexpr auto name = "s3";
std::string getName() const override
{
return name;
}
private:
StoragePtr getStorage(
const String & source,
const String & format,
const ColumnsDescription & columns,
Context & global_context,
const std::string & table_name) const override;
};
}