2021-06-24 23:05:45 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <common/shared_ptr_helper.h>
|
2021-06-27 00:20:28 +00:00
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
|
2021-06-24 23:05:45 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
2021-06-27 00:20:28 +00:00
|
|
|
|
|
|
|
/// For system.data_skipping_indices table - describes the data skipping indices in tables, similar to system.columns.
|
2021-06-24 23:05:45 +00:00
|
|
|
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 StorageMetadataPtr & /*metadata_snapshot*/,
|
|
|
|
SelectQueryInfo & query_info,
|
|
|
|
ContextPtr context,
|
|
|
|
QueryProcessingStage::Enum processed_stage,
|
|
|
|
size_t max_block_size,
|
|
|
|
unsigned num_streams) override;
|
|
|
|
|
|
|
|
protected:
|
2021-06-27 00:20:28 +00:00
|
|
|
StorageSystemDataSkippingIndices(const StorageID & table_id_);
|
2021-06-24 23:05:45 +00:00
|
|
|
};
|
2021-06-27 00:20:28 +00:00
|
|
|
|
2021-06-24 23:05:45 +00:00
|
|
|
}
|