Skip to content

Commit

Permalink
fix format check
Browse files Browse the repository at this point in the history
Signed-off-by: Little-Wallace <[email protected]>
  • Loading branch information
Little-Wallace committed Jan 10, 2024
1 parent 2b064c0 commit 3bf8a33
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/storage/src/hummock/compactor/compactor_runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -812,8 +812,8 @@ where
{
sst_builder
.add_monotonic_delete(MonotonicDeleteEvent {
new_epoch,
event_key,
new_epoch,
})
.await?;
}
Expand Down Expand Up @@ -933,8 +933,8 @@ where
if !drop {
sst_builder
.add_monotonic_delete(MonotonicDeleteEvent {
new_epoch,
event_key,
new_epoch,
})
.await?;
}
Expand Down Expand Up @@ -1039,8 +1039,10 @@ mod tests {
let state_clean_up_filter = StateCleanUpCompactionFilter::new(HashSet::from_iter(
compact_task.existing_table_ids.clone(),
));
let mut opts = StorageOpts::default();
opts.share_buffer_compaction_worker_threads_number = 1;
let opts = StorageOpts {
share_buffer_compaction_worker_threads_number: 1,
..Default::default()
};
let context = CompactorContext::new_local_compact_context(
Arc::new(opts),
sstable_store.clone(),
Expand Down

0 comments on commit 3bf8a33

Please sign in to comment.