ClickHouse/src/Storages/System/StorageSystemDataSkippingIndices.h

33 lines
945 B
C++
Raw Normal View History

#pragma once
2021-10-02 07:13:14 +00:00
#include <base/shared_ptr_helper.h>
#include <Storages/IStorage.h>
namespace DB
{
/// For system.data_skipping_indices table - describes the data skipping indices in tables, similar to system.columns.
class StorageSystemDataSkippingIndices : public shared_ptr_helper<StorageSystemDataSkippingIndices>, public IStorage
{
friend struct shared_ptr_helper<StorageSystemDataSkippingIndices>;
public:
std::string getName() const override { return "SystemDataSkippingIndices"; }
Pipe read(
const Names & column_names,
const StorageSnapshotPtr & storage_snapshot,
SelectQueryInfo & query_info,
ContextPtr context,
QueryProcessingStage::Enum processed_stage,
size_t max_block_size,
unsigned num_streams) override;
bool isSystemStorage() const override { return true; }
protected:
explicit StorageSystemDataSkippingIndices(const StorageID & table_id_);
};
}