repair: Add repair_hash_with_cmd

It is a wrapper contains both a repair cmd and repair_hash object.
This commit is contained in:
Asias He
2019-06-25 09:23:08 +08:00
parent 6b59279e26
commit 9f36d775dc

View File

@@ -315,6 +315,11 @@ enum class repair_stream_cmd : uint8_t {
get_full_row_hashes,
put_rows_done,
};
struct repair_hash_with_cmd {
repair_stream_cmd cmd;
repair_hash hash;
};
enum class row_level_diff_detect_algorithm : uint8_t {
send_full_set,
};