mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
31 lines
775 B
C++
31 lines
775 B
C++
|
#pragma once
|
||
|
|
||
|
#include <ext/shared_ptr_helper.h>
|
||
|
#include <Storages/System/IStorageSystemOneBlock.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class Context;
|
||
|
|
||
|
|
||
|
/// Allows to introspect stack trace of all server threads.
|
||
|
/// It acts like an embedded debugger.
|
||
|
class StorageSystemStackTrace : public ext::shared_ptr_helper<StorageSystemStackTrace>, public IStorageSystemOneBlock<StorageSystemStackTrace>
|
||
|
{
|
||
|
friend struct ext::shared_ptr_helper<StorageSystemStackTrace>;
|
||
|
public:
|
||
|
String getName() const override { return "SystemStackTrace"; }
|
||
|
|
||
|
static NamesAndTypesList getNamesAndTypes();
|
||
|
|
||
|
protected:
|
||
|
using IStorageSystemOneBlock::IStorageSystemOneBlock;
|
||
|
|
||
|
void fillData(MutableColumns & res_columns, const Context & context, const SelectQueryInfo & query_info) const override;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|