ClickHouse/src/Storages/System/StorageSystemZooKeeper.h

32 lines
842 B
C++
Raw Normal View History

#pragma once
#include <Storages/System/IStorageSystemOneBlock.h>
namespace DB
{
2016-12-08 02:49:04 +00:00
class Context;
2017-04-16 15:00:33 +00:00
/** Implements `zookeeper` system table, which allows you to view the data in ZooKeeper for debugging purposes.
*/
class StorageSystemZooKeeper final : public IStorageSystemOneBlock<StorageSystemZooKeeper>
{
public:
2022-06-02 05:41:37 +00:00
explicit StorageSystemZooKeeper(const StorageID & table_id_);
std::string getName() const override { return "SystemZooKeeper"; }
static NamesAndTypesList getNamesAndTypes();
2022-05-27 10:53:12 +00:00
SinkToStoragePtr write(const ASTPtr & /*query*/, const StorageMetadataPtr & /*metadata_snapshot*/, ContextPtr /*context*/) override;
protected:
using IStorageSystemOneBlock::IStorageSystemOneBlock;
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo & query_info) const override;
};
}