Browse Source

finish testCompactionTTL

main
VirgilZhu 2 weeks ago
parent
commit
098cde3769
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      db/db_impl.cc

+ 2
- 1
db/db_impl.cc View File

@ -594,7 +594,8 @@ void DBImpl::CompactRange(const Slice* begin, const Slice* end) {
}
}
TEST_CompactMemTable(); // TODO(sanjay): Skip if memtable does not overlap
for (int level = 0; level < max_level_with_files; level++) {
for (int level = 0; level <= max_level_with_files; level++) {
// for (int level = 0; level < config::kNumLevels - 1; level++) {
TEST_CompactRange(level, begin, end);
}
}

Loading…
Cancel
Save