idl: Add position_in_partition

Needed by the row level repair RPC verbs.
This commit is contained in:
Asias He
2018-09-10 15:49:39 +08:00
parent e9fbc27740
commit 5fbbc63676

View File

@@ -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<clustering_key_prefix> get_clustering_key_prefix();
};