Add an assert for probably dead code
This commit is contained in:
parent
241f9c123e
commit
65e3b9192e
|
@ -161,6 +161,7 @@ ACTOR static Future<Void> handleSendMutationVectorRequest(RestoreSendVersionedMu
|
|||
// Note: Log and range mutations may be delivered out of order. Can we handle it?
|
||||
if (mutation.type == MutationRef::SetVersionstampedKey ||
|
||||
mutation.type == MutationRef::SetVersionstampedValue) {
|
||||
ASSERT(false); // No version stamp mutations in backup logs
|
||||
batchData->addVersionStampedKV(mutation, mutationVersion, numVersionStampedKV);
|
||||
numVersionStampedKV++;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue