mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 03:12:43 +00:00
74 lines
2.0 KiB
C++
74 lines
2.0 KiB
C++
#pragma once
|
|
|
|
#include <Storages/IStorage.h>
|
|
#include <Core/Defines.h>
|
|
#include <common/MultiVersion.h>
|
|
#include <ext/shared_ptr_helper.h>
|
|
#include <IO/WriteBufferFromString.h>
|
|
#include <IO/Operators.h>
|
|
|
|
|
|
namespace Poco
|
|
{
|
|
class Logger;
|
|
}
|
|
|
|
namespace DB
|
|
{
|
|
struct DictionaryStructure;
|
|
struct IDictionaryBase;
|
|
class ExternalDictionaries;
|
|
|
|
class StorageDictionary : public ext::shared_ptr_helper<StorageDictionary>, public IStorage
|
|
{
|
|
public:
|
|
std::string getName() const override { return "Dictionary"; }
|
|
std::string getTableName() const override { return table_name; }
|
|
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 NamesAndTypesList getNamesAndTypes(const DictionaryStructure & dictionary_structure);
|
|
|
|
template <typename ForwardIterator>
|
|
static std::string generateNamesAndTypesDescription(ForwardIterator begin, ForwardIterator end)
|
|
{
|
|
std::string description;
|
|
{
|
|
WriteBufferFromString buffer(description);
|
|
bool first = true;
|
|
for (; begin != end; ++begin)
|
|
{
|
|
if (!first)
|
|
buffer << ", ";
|
|
first = false;
|
|
|
|
buffer << begin->name << ' ' << begin->type->getName();
|
|
}
|
|
}
|
|
|
|
return description;
|
|
}
|
|
|
|
private:
|
|
using Ptr = MultiVersion<IDictionaryBase>::Version;
|
|
|
|
String table_name;
|
|
String dictionary_name;
|
|
Poco::Logger * logger;
|
|
|
|
void checkNamesAndTypesCompatibleWithDictionary(const DictionaryStructure & dictionary_structure) const;
|
|
|
|
protected:
|
|
StorageDictionary(const String & table_name_,
|
|
const ColumnsDescription & columns_,
|
|
const DictionaryStructure & dictionary_structure_,
|
|
const String & dictionary_name_);
|
|
};
|
|
|
|
}
|