mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 03:12:43 +00:00
4e76629aaf
- lots of static_cast - add safe_cast - types adjustments - config - IStorage::read/watch - ... - some TODO's (to convert types in future) P.S. That was quite a journey... v2: fixes after rebase v3: fix conflicts after #42308 merged Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
48 lines
986 B
C++
48 lines
986 B
C++
#pragma once
|
|
|
|
#ifdef OS_LINUX /// Because of 'sigqueue' functions and RT signals.
|
|
|
|
#include <mutex>
|
|
#include <Storages/IStorage.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 IStorage
|
|
{
|
|
public:
|
|
explicit StorageSystemStackTrace(const StorageID & table_id_);
|
|
|
|
String getName() const override { return "SystemStackTrace"; }
|
|
|
|
Pipe read(
|
|
const Names & column_names,
|
|
const StorageSnapshotPtr & storage_snapshot,
|
|
SelectQueryInfo & query_info,
|
|
ContextPtr context,
|
|
QueryProcessingStage::Enum processed_stage,
|
|
size_t max_block_size,
|
|
size_t num_streams) override;
|
|
|
|
bool isSystemStorage() const override { return true; }
|
|
|
|
protected:
|
|
mutable std::mutex mutex;
|
|
Poco::Logger * log;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|