mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
91 lines
2.8 KiB
C++
91 lines
2.8 KiB
C++
#pragma once
|
|
|
|
#include <Storages/IStorage.h>
|
|
#include <Core/Defines.h>
|
|
#include <common/MultiVersion.h>
|
|
#include <ext/shared_ptr_helper.h>
|
|
|
|
|
|
namespace Poco
|
|
{
|
|
class Logger;
|
|
}
|
|
|
|
namespace DB
|
|
{
|
|
struct DictionaryStructure;
|
|
struct IDictionaryBase;
|
|
class ExternalDictionaries;
|
|
|
|
class StorageDictionary : private ext::shared_ptr_helper<StorageDictionary>, public IStorage
|
|
{
|
|
public:
|
|
static StoragePtr create(const String & table_name_,
|
|
Context & context_,
|
|
const ASTCreateQuery & query,
|
|
NamesAndTypesListPtr columns_,
|
|
const NamesAndTypesList & materialized_columns_,
|
|
const NamesAndTypesList & alias_columns_,
|
|
const ColumnDefaults & column_defaults_);
|
|
|
|
static StoragePtr create(const String & table_name,
|
|
NamesAndTypesListPtr columns,
|
|
const NamesAndTypesList & materialized_columns,
|
|
const NamesAndTypesList & alias_columns,
|
|
const ColumnDefaults & column_defaults,
|
|
const DictionaryStructure & dictionary_structure,
|
|
const String & dictionary_name);
|
|
|
|
std::string getName() const override { return "Dictionary"; }
|
|
std::string getTableName() const override { return table_name; }
|
|
const NamesAndTypesList & getColumnsListImpl() const override { return *columns; }
|
|
BlockInputStreams read(const Names & column_names,
|
|
const SelectQueryInfo & query_info,
|
|
const Context & context,
|
|
QueryProcessingStage::Enum & processed_stage,
|
|
size_t max_block_size = DEFAULT_BLOCK_SIZE,
|
|
unsigned threads = 1) override;
|
|
|
|
void drop() override {}
|
|
static NamesAndTypesListPtr getNamesAndTypes(const DictionaryStructure & dictionaryStructure);
|
|
|
|
private:
|
|
using Ptr = MultiVersion<IDictionaryBase>::Version;
|
|
|
|
String table_name;
|
|
NamesAndTypesListPtr columns;
|
|
String dictionary_name;
|
|
Poco::Logger * logger;
|
|
|
|
void checkNamesAndTypesCompatibleWithDictionary(const DictionaryStructure & dictionaryStructure) const;
|
|
|
|
template <typename ForwardIterator>
|
|
std::string generateNamesAndTypesDescription(ForwardIterator begin, ForwardIterator end) const
|
|
{
|
|
if (begin == end)
|
|
{
|
|
return "";
|
|
}
|
|
std::string description;
|
|
for (; begin != end; ++begin)
|
|
{
|
|
description += ", ";
|
|
description += begin->name;
|
|
description += ' ';
|
|
description += begin->type->getName();
|
|
}
|
|
return description.substr(2, description.size());
|
|
}
|
|
|
|
protected:
|
|
StorageDictionary(const String & table_name_,
|
|
NamesAndTypesListPtr columns_,
|
|
const NamesAndTypesList & materialized_columns_,
|
|
const NamesAndTypesList & alias_columns_,
|
|
const ColumnDefaults & column_defaults_,
|
|
const DictionaryStructure & dictionary_structure_,
|
|
const String & dictionary_name_);
|
|
};
|
|
|
|
}
|