From 5fbbc63676833fc03ef7b4e44d301e37174ed2d3 Mon Sep 17 00:00:00 2001 From: Asias He Date: Mon, 10 Sep 2018 15:49:39 +0800 Subject: [PATCH] idl: Add position_in_partition Needed by the row level repair RPC verbs. --- idl/partition_checksum.idl.hh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/idl/partition_checksum.idl.hh b/idl/partition_checksum.idl.hh index c9c8c2f940..585542eb84 100644 --- a/idl/partition_checksum.idl.hh +++ b/idl/partition_checksum.idl.hh @@ -44,3 +44,9 @@ enum class partition_region : uint8_t { clustered, partition_end, }; + +class position_in_partition { + partition_region get_type(); + bound_weight get_bound_weight(); + std::optional get_clustering_key_prefix(); +};