Interface change! Allow decreasing setOldestVersion

This commit is contained in:
2024-07-03 10:31:57 -07:00
parent 982b31af34
commit 3db3d975fc
3 changed files with 8 additions and 10 deletions
+2 -2
View File
@@ -77,8 +77,8 @@ struct __attribute__((__visibility__("default"))) ConflictSet {
* versions. */
void addWrites(const WriteRange *writes, int count, int64_t writeVersion);
/** Reads where readVersion < oldestVersion will result in `TooOld`. Must be
* greater than or equal to all previous oldest versions. */
/** Reads where readVersion < oldestVersion will result in `TooOld`. Ignored
* if not greater than or equal to all previous oldest versions. */
void setOldestVersion(int64_t oldestVersion);
/** Reads where readVersion < oldestVersion will result in `TooOld`. There are