mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 02:41:59 +00:00
777b5bc15b
... IStorage has deleted copy ctor / assignment already
26 lines
668 B
C++
26 lines
668 B
C++
#pragma once
|
|
|
|
#include <Storages/System/StorageSystemPartsBase.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
|
|
/** Implements system table 'projection_parts' which allows to get information about projection parts for tables of MergeTree family.
|
|
*/
|
|
class StorageSystemProjectionParts final : public StorageSystemPartsBase
|
|
{
|
|
public:
|
|
explicit StorageSystemProjectionParts(const StorageID & table_id_);
|
|
|
|
std::string getName() const override { return "SystemProjectionParts"; }
|
|
|
|
protected:
|
|
void processNextStorage(
|
|
ContextPtr context, MutableColumns & columns, std::vector<UInt8> & columns_mask, const StoragesInfo & info, bool has_state_column) override;
|
|
};
|
|
}
|