Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
zwang28 committed Oct 16, 2024
1 parent 30af935 commit b12d3af
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/storage/src/hummock/event_handler/uploader/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1093,7 +1093,9 @@ impl UploaderData {
fn min_uncommitted_sst_id(&self) -> Option<HummockSstableObjectId> {
self.spilled_data
.values()
.filter_map(|(s, _)| {
.map(|(s, _)| s)
.chain(self.syncing_data.values().flat_map(|s| s.uploaded.iter()))
.filter_map(|s| {
s.sstable_infos()
.iter()
.chain(s.old_value_sstable_infos())
Expand Down

0 comments on commit b12d3af

Please sign in to comment.