Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: facebook/rocksdb
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 387abf9ffe2aec385b5b5cb7d9c6f0536d3e6338
Choose a base ref
..
head repository: facebook/rocksdb
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d692a29e8acc5e9a0eced292957d37440bdb5307
Choose a head ref
Showing with 6 additions and 6 deletions.
  1. +6 −6 db/compaction/compaction_picker.cc
12 changes: 6 additions & 6 deletions db/compaction/compaction_picker.cc
Original file line number Diff line number Diff line change
@@ -785,11 +785,11 @@ Compaction* CompactionPicker::CompactRange(
BottommostLevelCompaction::kIfHaveCompactionFilter) &&
max_file_num_to_ignore != std::numeric_limits<uint64_t>::max()) {
assert(input_level == output_level);
ROCKS_LOG_INFO(
ioptions_.logger,
"[%s] Filtering input files with file number > %ld which was "
"created during the current manual compaction",
cf_name.c_str(), max_file_num_to_ignore);
ROCKS_LOG_INFO(ioptions_.logger,
"[%s] Filtering input files with file number > %" PRIu64
" which was "
"created during the current manual compaction",
cf_name.c_str(), max_file_num_to_ignore);

// inputs_shrunk holds a continuous subset of input files which were all
// created before the current manual compaction
@@ -809,7 +809,7 @@ Compaction* CompactionPicker::CompactRange(
ROCKS_LOG_INFO(
ioptions_.logger,
"[%s] No files to compact at bottom level %d since every file was "
"created from a previous compaction, skipping",
"created from the current compaction, skipping",
cf_name.c_str(), input_level);
return nullptr;
}