blob: 8f75d380ee14e59667f0f1cf5c28547659b6b8aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#pragma once
#include <Storages/System/StorageSystemPartsBase.h>
namespace DB
{
class Context;
/** Implements system table 'projection_parts_columns' which allows to get information about
* columns in projection parts for tables of MergeTree family.
*/
class StorageSystemProjectionPartsColumns final : public StorageSystemPartsBase
{
public:
explicit StorageSystemProjectionPartsColumns(const StorageID & table_id_);
std::string getName() const override { return "SystemProjectionPartsColumns"; }
protected:
void processNextStorage(
ContextPtr context, MutableColumns & columns, std::vector<UInt8> & columns_mask, const StoragesInfo & info, bool has_state_column) override;
};
}
|