mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 19:02:04 +00:00
58 lines
1.0 KiB
C++
58 lines
1.0 KiB
C++
|
#pragma once
|
||
|
|
||
|
#include <functional>
|
||
|
#include <optional>
|
||
|
|
||
|
#include <base/types.h>
|
||
|
|
||
|
#include <IO/WriteBuffer.h>
|
||
|
#include <IO/ReadBuffer.h>
|
||
|
|
||
|
#include <Storages/MergeTree/MarkRange.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
/// Represents a segment [left; right]
|
||
|
struct PartBlockRange
|
||
|
{
|
||
|
Int64 begin;
|
||
|
Int64 end;
|
||
|
|
||
|
bool operator==(const PartBlockRange & rhs) const
|
||
|
{
|
||
|
return begin == rhs.begin && end == rhs.end;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
struct PartitionReadRequest
|
||
|
{
|
||
|
String partition_id;
|
||
|
String part_name;
|
||
|
String projection_name;
|
||
|
PartBlockRange block_range;
|
||
|
MarkRanges mark_ranges;
|
||
|
|
||
|
void serialize(WriteBuffer & out) const;
|
||
|
void describe(WriteBuffer & out) const;
|
||
|
void deserialize(ReadBuffer & in);
|
||
|
|
||
|
UInt64 getConsistentHash(size_t buckets) const;
|
||
|
};
|
||
|
|
||
|
struct PartitionReadResponse
|
||
|
{
|
||
|
bool denied{false};
|
||
|
MarkRanges mark_ranges{};
|
||
|
|
||
|
void serialize(WriteBuffer & out) const;
|
||
|
void deserialize(ReadBuffer & in);
|
||
|
};
|
||
|
|
||
|
|
||
|
using MergeTreeReadTaskCallback = std::function<std::optional<PartitionReadResponse>(PartitionReadRequest)>;
|
||
|
|
||
|
|
||
|
}
|