chore: rename SequenceSnapshot (#213)

* chore: per review

* chore: per review
This commit is contained in:
discord9
2025-02-06 15:44:18 +08:00
committed by GitHub
parent b5d172fe61
commit e2fd89fce1
5 changed files with 854 additions and 853 deletions
+4 -4
View File
@@ -26,14 +26,14 @@ message QueryContext {
string timezone = 4;
map<string, string> extensions = 5;
uint32 channel = 6;
SequenceSnapshot seq_snapshot = 7;
SnapshotSequences snapshot_seqs = 7;
}
message SequenceSnapshot{
message SnapshotSequences {
// mapping of RegionId to SequenceNumber, for snapshot read, meaning that the
// read should only container data that was committed before(and include) the
// read should only container data that was committed before (and include) the
// given sequence number
map<uint64, uint64> seq_snapshot = 7;
map<uint64, uint64> snapshot_seqs = 7;
}
message RequestHeader {