mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
495c6e03aa
* Replace all Context references with std::weak_ptr * Fix shared context captured by value * Fix build * Fix Context with named sessions * Fix copy context * Fix gcc build * Merge with master and fix build * Fix gcc-9 build
44 lines
1.0 KiB
C++
44 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#ifdef OS_LINUX /// Because of 'sigqueue' functions and RT signals.
|
|
|
|
#include <mutex>
|
|
#include <ext/shared_ptr_helper.h>
|
|
#include <Storages/System/IStorageSystemOneBlock.h>
|
|
|
|
namespace Poco
|
|
{
|
|
class Logger;
|
|
}
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
|
|
/// Allows to introspect stack trace of all server threads.
|
|
/// It acts like an embedded debugger.
|
|
/// More than one instance of this table cannot be used.
|
|
class StorageSystemStackTrace final : 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();
|
|
|
|
StorageSystemStackTrace(const StorageID & table_id_);
|
|
|
|
protected:
|
|
using IStorageSystemOneBlock::IStorageSystemOneBlock;
|
|
void fillData(MutableColumns & res_columns, ContextPtr context, const SelectQueryInfo & query_info) const override;
|
|
|
|
mutable std::mutex mutex;
|
|
|
|
Poco::Logger * log;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|