mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 11:33:46 +00:00
29 lines
902 B
C++
29 lines
902 B
C++
#include <TableFunctions/TableFunctionURL.h>
|
|
|
|
#include "registerTableFunctions.h"
|
|
#include <Access/AccessFlags.h>
|
|
#include <Formats/FormatFactory.h>
|
|
#include <Poco/URI.h>
|
|
#include <Storages/ColumnsDescription.h>
|
|
#include <Storages/StorageURL.h>
|
|
#include <TableFunctions/TableFunctionFactory.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
StoragePtr TableFunctionURL::getStorage(
|
|
const String & source, const String & format_, const ColumnsDescription & columns, Context & global_context,
|
|
const std::string & table_name, const String & compression_method_) const
|
|
{
|
|
Poco::URI uri(source);
|
|
return StorageURL::create(uri, StorageID(getDatabaseName(), table_name),
|
|
format_, std::nullopt /*format settings*/, columns,
|
|
ConstraintsDescription{}, global_context, compression_method_);
|
|
}
|
|
|
|
void registerTableFunctionURL(TableFunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<TableFunctionURL>();
|
|
}
|
|
}
|