ClickHouse/src/TableFunctions/TableFunctionURL.h

29 lines
668 B
C++
Raw Normal View History

2018-06-11 12:13:00 +00:00
#pragma once
#include <TableFunctions/ITableFunctionFileLike.h>
namespace DB
{
class Context;
2018-06-11 12:13:00 +00:00
/* url(source, format, structure) - creates a temporary storage from url
*/
class TableFunctionURL : public ITableFunctionFileLike
{
public:
static constexpr auto name = "url";
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 String & compression_method) const override;
const char * getStorageTypeName() const override { return "URL"; }
2018-06-11 12:13:00 +00:00
};
2018-06-11 12:13:00 +00:00
}