MCPcopy Create free account
hub / github.com/apple/foundationdb / logMutationTooOld

Function logMutationTooOld

fdbserver/RestoreLoader.actor.cpp:326–330  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

324}
325
326static inline bool logMutationTooOld(KeyRangeMap<Version>* pRangeVersions, MutationRef mutation, Version v) {
327 return isRangeMutation(mutation)
328 ? _logMutationTooOld(pRangeVersions, KeyRangeRef(mutation.param1, mutation.param2), v)
329 : _logMutationTooOld(pRangeVersions, KeyRangeRef(singleKeyRange(mutation.param1)), v);
330}
331
332// Assume: Only update the local data if it (applierInterf) has not been set
333void handleRestoreSysInfoRequest(const RestoreSysInfoRequest& req, Reference<RestoreLoaderData> self) {

Calls 4

isRangeMutationFunction · 0.85
_logMutationTooOldFunction · 0.85
singleKeyRangeFunction · 0.85
KeyRangeRefClass · 0.50

Tested by

no test coverage detected