Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wenym1 committed Dec 25, 2024
1 parent 72f3ea0 commit ddbe44c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/storage/src/hummock/event_handler/uploader/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,14 @@ impl UnsyncData {
.all(|instance| instance.is_destroyed),
"should be clear when dropping the read version instance"
);
for instance_id in table_unsync_data.instance_data.keys() {
assert_eq!(
*table_id,
self.instance_table_id
.remove(instance_id)
.expect("should exist")
);
}
}
}
debug_assert!(self
Expand Down

0 comments on commit ddbe44c

Please sign in to comment.