ClickHouse/dbms/include/DB/Storages/StorageSystemZooKeeper.h
Andrey Mironov 731be3e7cf Merge
2014-11-12 13:37:47 +03:00

44 lines
1.1 KiB
C++

#pragma once
#include <Poco/SharedPtr.h>
#include <DB/Storages/IStorage.h>
#include <DB/Interpreters/Context.h>
namespace DB
{
using Poco::SharedPtr;
/** Реализует системную таблицу zookeeper, которая позволяет просматривать данные в ZooKeeper в целях отладки.
*/
class StorageSystemZooKeeper : public IStorage
{
public:
static StoragePtr create(const std::string & name_, const Context & context_);
std::string getName() const override { return "SystemZooKeeper"; }
std::string getTableName() const override { return name; }
const NamesAndTypesList & getColumnsListImpl() const override { return columns; }
BlockInputStreams read(
const Names & column_names,
ASTPtr query,
const Settings & settings,
QueryProcessingStage::Enum & processed_stage,
size_t max_block_size = DEFAULT_BLOCK_SIZE,
unsigned threads = 1) override;
private:
const std::string name;
const Context & context;
NamesAndTypesList columns;
StorageSystemZooKeeper(const std::string & name_, const Context & context_);
};
}