mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 03:42:48 +00:00
12 lines
226 B
C++
12 lines
226 B
C++
#include "IPartMetadataManager.h"
|
|
|
|
#include <Disks/IVolume.h>
|
|
#include <Storages/MergeTree/IMergeTreeDataPart.h>
|
|
|
|
namespace DB
|
|
{
|
|
IPartMetadataManager::IPartMetadataManager(const IMergeTreeDataPart * part_) : part(part_)
|
|
{
|
|
}
|
|
}
|