ClickHouse/dbms/src/Storages/System/StorageSystemClusters.h

41 lines
1.0 KiB
C++
Raw Normal View History

2015-04-30 12:43:16 +00:00
#pragma once
2017-06-06 17:18:32 +00:00
#include <ext/shared_ptr_helper.h>
#include <Storages/IStorage.h>
2015-04-30 12:43:16 +00:00
2016-12-08 02:49:04 +00:00
2015-04-30 12:43:16 +00:00
namespace DB
{
class Context;
/** Implements system table 'clusters'
* that allows to obtain information about available clusters
* (which may be specified in Distributed tables).
2015-04-30 12:43:16 +00:00
*/
class StorageSystemClusters : public ext::shared_ptr_helper<StorageSystemClusters>, public IStorage
2015-04-30 12:43:16 +00:00
{
friend class ext::shared_ptr_helper<StorageSystemClusters>;
2015-04-30 12:43:16 +00:00
public:
2017-06-18 05:43:29 +00:00
StorageSystemClusters(const std::string & name_);
std::string getName() const override { return "SystemClusters"; }
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,
2017-06-02 15:54:39 +00:00
size_t max_block_size,
unsigned num_streams) override;
2015-04-30 12:43:16 +00:00
private:
const std::string name;
NamesAndTypesList columns;
2015-04-30 12:43:16 +00:00
};
}