mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
71 lines
2.0 KiB
C++
71 lines
2.0 KiB
C++
#pragma once
|
|
|
|
#include "config.h"
|
|
|
|
#if USE_AZURE_BLOB_STORAGE
|
|
|
|
#include <TableFunctions/ITableFunction.h>
|
|
#include <Storages/StorageAzureBlob.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
/* AzureBlob(source, [access_key_id, secret_access_key,] [format, structure, compression]) - creates a temporary storage for a file in AzureBlob.
|
|
*/
|
|
class TableFunctionAzureBlobStorage : public ITableFunction
|
|
{
|
|
public:
|
|
static constexpr auto name = "azureBlobStorage";
|
|
static constexpr auto signature = "- connection_string|storage_account_url, container_name, blobpath, [account_name, account_key, format, compression, structure]\n";
|
|
|
|
static size_t getMaxNumberOfArguments() { return 8; }
|
|
|
|
String getName() const override
|
|
{
|
|
return name;
|
|
}
|
|
|
|
virtual String getSignature() const
|
|
{
|
|
return signature;
|
|
}
|
|
|
|
bool hasStaticStructure() const override { return configuration.structure != "auto"; }
|
|
|
|
bool needStructureHint() const override { return configuration.structure == "auto"; }
|
|
|
|
void setStructureHint(const ColumnsDescription & structure_hint_) override { structure_hint = structure_hint_; }
|
|
|
|
bool supportsReadingSubsetOfColumns() override;
|
|
|
|
std::unordered_set<String> getVirtualsToCheckBeforeUsingStructureHint() const override
|
|
{
|
|
return {"_path", "_file"};
|
|
}
|
|
|
|
static StorageAzureBlob::Configuration parseArgumentsImpl(ASTs & args, const ContextPtr & context, bool get_format_from_file = true);
|
|
|
|
protected:
|
|
|
|
StoragePtr executeImpl(
|
|
const ASTPtr & ast_function,
|
|
ContextPtr context,
|
|
const std::string & table_name,
|
|
ColumnsDescription cached_columns) const override;
|
|
|
|
const char * getStorageTypeName() const override { return "Azure"; }
|
|
|
|
ColumnsDescription getActualTableStructure(ContextPtr context) const override;
|
|
void parseArguments(const ASTPtr & ast_function, ContextPtr context) override;
|
|
|
|
mutable StorageAzureBlob::Configuration configuration;
|
|
ColumnsDescription structure_hint;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|