mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 03:42:48 +00:00
19 lines
216 B
C++
19 lines
216 B
C++
![]() |
#pragma once
|
||
|
|
||
|
#include <Core/Types.h>
|
||
|
#include <map>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
struct MergeTreeMutationStatus
|
||
|
{
|
||
|
String id;
|
||
|
String command;
|
||
|
time_t create_time = 0;
|
||
|
std::map<String, Int64> block_numbers;
|
||
|
};
|
||
|
|
||
|
}
|