#pragma once #include #include 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, public IStorageSystemOneBlock { friend struct ext::shared_ptr_helper; 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; }; }