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