We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4720b4c commit 3c4a437Copy full SHA for 3c4a437
fdbclient/include/fdbclient/SpecialKeySpace.actor.h
@@ -539,6 +539,9 @@ class DataDistributionImpl : public SpecialKeyRangeRWImpl {
539
Future<Optional<std::string>> commit(ReadYourWritesTransaction* ryw) override;
540
};
541
542
+// If the underlying set of key-value pairs of a key space is not changing, then we expect repeating a read to give the
543
+// same result. Additionally, we can generate the expected result of any read if that read is reading a subrange. This
544
+// actor performs a read of an arbitrary subrange of [begin, end) and validates the results.
545
ACTOR Future<Void> validateSpecialSubrangeRead(ReadYourWritesTransaction* ryw,
546
KeySelector begin,
547
KeySelector end,
0 commit comments