ClickHouse/src/Storages/System/StorageSystemProcesses.h

30 lines
799 B
C++
Raw Normal View History

#pragma once
2021-06-15 19:55:21 +00:00
#include <common/shared_ptr_helper.h>
#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 `processes` system table, which allows you to get information about the queries that are currently executing.
*/
2021-06-15 19:55:21 +00:00
class StorageSystemProcesses final : public shared_ptr_helper<StorageSystemProcesses>, public IStorageSystemOneBlock<StorageSystemProcesses>
{
2021-06-15 19:55:21 +00:00
friend struct shared_ptr_helper<StorageSystemProcesses>;
public:
std::string getName() const override { return "SystemProcesses"; }
static NamesAndTypesList getNamesAndTypes();
protected:
using IStorageSystemOneBlock::IStorageSystemOneBlock;
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo & query_info) const override;
};
}