mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 03:42:48 +00:00
29 lines
641 B
C++
29 lines
641 B
C++
|
#pragma once
|
||
|
|
||
|
#include <Storages/MergeTree/IPartMetadataManager.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class PartMetadataManagerOrdinary : public IPartMetadataManager
|
||
|
{
|
||
|
public:
|
||
|
explicit PartMetadataManagerOrdinary(const IMergeTreeDataPart * part_);
|
||
|
|
||
|
~PartMetadataManagerOrdinary() override = default;
|
||
|
|
||
|
std::unique_ptr<SeekableReadBuffer> read(const String & file_name) const override;
|
||
|
|
||
|
bool exists(const String & file_name) const override;
|
||
|
|
||
|
void deleteAll(bool /*include_projection*/) override {}
|
||
|
|
||
|
void assertAllDeleted(bool /*include_projection*/) const override {}
|
||
|
|
||
|
void updateAll(bool /*include_projection*/) override {}
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
}
|