mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 22:22:00 +00:00
40 lines
1017 B
C++
40 lines
1017 B
C++
#pragma once
|
|
|
|
#include <ext/shared_ptr_helper.h>
|
|
#include <Storages/IStorage.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
|
|
/** Implements `replicas` system table, which provides information about the status of the replicated tables.
|
|
*/
|
|
class StorageSystemReplicas : public ext::shared_ptr_helper<StorageSystemReplicas>, public IStorage
|
|
{
|
|
friend class ext::shared_ptr_helper<StorageSystemReplicas>;
|
|
public:
|
|
std::string getName() const override { return "SystemReplicas"; }
|
|
std::string getTableName() const override { return 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,
|
|
unsigned num_streams) override;
|
|
|
|
private:
|
|
const std::string name;
|
|
NamesAndTypesList columns;
|
|
|
|
StorageSystemReplicas(const std::string & name_);
|
|
};
|
|
|
|
}
|