mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 17:44:23 +00:00
3ebfd2fb7f
This reverts commit 34b3f738a67432b44f6f69238dd1529535984d1a.
43 lines
986 B
C++
43 lines
986 B
C++
#pragma once
|
|
|
|
#include <Poco/SharedPtr.h>
|
|
|
|
#include <DB/Storages/IStorage.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using Poco::SharedPtr;
|
|
|
|
|
|
/** Реализует системную таблицу events, которая позволяет получить информацию для профайлинга.
|
|
*/
|
|
class StorageSystemEvents : public IStorage
|
|
{
|
|
public:
|
|
static StoragePtr create(const std::string & name_);
|
|
|
|
std::string getName() const override { return "SystemEvents"; }
|
|
std::string getTableName() const override { return name; }
|
|
|
|
const NamesAndTypesList & getColumnsListImpl() const override { return columns; }
|
|
|
|
BlockInputStreams read(
|
|
const Names & column_names,
|
|
ASTPtr query,
|
|
const Context & context,
|
|
const Settings & settings,
|
|
QueryProcessingStage::Enum & processed_stage,
|
|
size_t max_block_size = DEFAULT_BLOCK_SIZE,
|
|
unsigned threads = 1) override;
|
|
|
|
private:
|
|
const std::string name;
|
|
NamesAndTypesList columns;
|
|
|
|
StorageSystemEvents(const std::string & name_);
|
|
};
|
|
|
|
}
|