You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: BTDBTest/KeyValueDBFileTestBase.cs
+5-1
Original file line number
Diff line number
Diff line change
@@ -561,7 +561,11 @@ public void BigCompaction()
561
561
}
562
562
563
563
db.Compact(CancellationToken.None);
564
-
Assert.Equal(513u,logger.MarkedForDeleteCount);
564
+
Assert.Equal(93u,logger.MarkedForDeleteCount);
565
+
Assert.Equal("Compactor didn't removed all waste (2375267), because it created 20 PVL files already. Remaining waste left to next compaction.",logger.LastWarning);
566
+
db.Compact(CancellationToken.None);
567
+
Assert.Equal(174u,logger.MarkedForDeleteCount);
568
+
Assert.Equal("Compactor didn't removed all waste (1859507), because it created 20 PVL files already. Remaining waste left to next compaction.",logger.LastWarning);
0 commit comments