Skip to content

Commit 48f831a

Browse files
committed
doc
1 parent 28f1fb4 commit 48f831a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

kernel/src/actions/visitors.rs

+2
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,8 @@ impl CheckpointVisitor<'_> {
559559
fn is_expired_tombstone<'a>(&self, i: usize, getter: &'a dyn GetData<'a>) -> DeltaResult<bool> {
560560
// Ideally this should never be zero, but we are following the same behavior as Delta
561561
// Spark and the Java Kernel.
562+
// Note: When remove.deletion_timestamp is not present (defaulting to 0), the remove action
563+
// will be excluded from the checkpoint file as it will be treated as expired.
562564
let mut deletion_timestamp: i64 = 0;
563565
if let Some(ts) = getter.get_opt(i, "remove.deletionTimestamp")? {
564566
deletion_timestamp = ts;

0 commit comments

Comments
 (0)