Add an assert for probably dead code

This commit is contained in:
Jingyu Zhou 2020-03-28 21:18:37 -07:00
parent 241f9c123e
commit 65e3b9192e
1 changed files with 1 additions and 0 deletions

View File

@ -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 {