ClickHouse/src/Storages/System/StorageSystemWarnings.h

22 lines
604 B
C++
Raw Normal View History

2021-07-09 09:27:51 +00:00
#pragma once
#include <Storages/System/IStorageSystemOneBlock.h>
namespace DB {
class Context;
class StorageSystemWarnings final : public shared_ptr_helper<StorageSystemWarnings>, public IStorageSystemOneBlock<StorageSystemWarnings> {
public:
std::string getName() const override { return "SystemWarnings"; }
static NamesAndTypesList getNamesAndTypes();
protected:
friend struct shared_ptr_helper<StorageSystemWarnings>;
using IStorageSystemOneBlock::IStorageSystemOneBlock;
void fillData(MutableColumns & res_columns, ContextPtr, const SelectQueryInfo &) const override;
};
}