ClickHouse/src/Storages/System/StorageSystemClusters.h

34 lines
942 B
C++
Raw Normal View History

2015-04-30 12:43:16 +00:00
#pragma once
#include <DataTypes/DataTypeString.h>
#include <DataTypes/DataTypesNumber.h>
#include <Storages/System/IStorageSystemOneBlock.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;
2021-02-08 09:14:17 +00:00
class Cluster;
2015-04-30 12:43:16 +00:00
/** 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 final : public IStorageSystemOneBlock<StorageSystemClusters>
2015-04-30 12:43:16 +00:00
{
public:
std::string getName() const override { return "SystemClusters"; }
static NamesAndTypesList getNamesAndTypes();
protected:
using IStorageSystemOneBlock::IStorageSystemOneBlock;
2021-02-08 09:14:17 +00:00
using NameAndCluster = std::pair<String, std::shared_ptr<Cluster>>;
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo & query_info) const override;
2021-02-08 19:36:17 +00:00
static void writeCluster(MutableColumns & res_columns, const NameAndCluster & name_and_cluster);
2015-04-30 12:43:16 +00:00
};
}