mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 04:12:19 +00:00
35 lines
698 B
C++
35 lines
698 B
C++
#pragma once
|
|
|
|
#include <Common/Exception.h>
|
|
#include <Core/Types.h>
|
|
#include <IO/WriteHelpers.h>
|
|
#include <Storages/MutationCommands.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ReadBuffer;
|
|
class WriteBuffer;
|
|
|
|
struct ReplicatedMergeTreeMutationEntry
|
|
{
|
|
void writeText(WriteBuffer & out) const;
|
|
void readText(ReadBuffer & in);
|
|
|
|
String toString() const;
|
|
static ReplicatedMergeTreeMutationEntry parse(const String & str, String znode_name);
|
|
|
|
String znode_name;
|
|
|
|
time_t create_time = 0;
|
|
String source_replica;
|
|
|
|
std::map<String, Int64> block_numbers;
|
|
MutationCommands commands;
|
|
};
|
|
|
|
using ReplicatedMergeTreeMutationEntryPtr = std::shared_ptr<const ReplicatedMergeTreeMutationEntry>;
|
|
|
|
}
|