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

38 lines
895 B
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
{
public:
std::string getName() const override { return "SystemClusters"; }
std::string getTableName() const override { return name; }
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;
protected:
StorageSystemClusters(const std::string & name_);
2015-04-30 12:43:16 +00:00
};
}