Skip to content

Commit ddcad9b

Browse files
committed
cleanup
1 parent 47174ea commit ddcad9b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

kernel/src/log_replay.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,6 @@ pub(crate) trait HasSelectionVector {
369369
mod tests {
370370
use super::*;
371371
use crate::engine_data::GetData;
372-
use crate::log_replay::deduplicator::Deduplicator;
373372
use crate::DeltaResult;
374373
use std::collections::{HashMap, HashSet};
375374

kernel/src/log_replay/deduplicator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
//! - **JSON commit files** (`is_log_batch = true`): Tracks (path, dv_unique_id) and updates
66
//! the hashmap as files are seen. Implementation: [`FileActionDeduplicator`]
77
//!
8-
//! - **Checkpoint files** (`is_log_batch = false`): Uses path-only keys with a read-only hashmap
9-
//! pre-populated from the commit log phase. Future implementation.
8+
//! - **Checkpoint files** (`is_log_batch = false`): Uses a read-only Tracks (path, dv_unique_id)
9+
//! hashmap pre-populated from the commit log phase. Future implementation.
1010
//!
1111
//! [`FileActionDeduplicator`]: crate::log_replay::FileActionDeduplicator
1212

0 commit comments

Comments
 (0)