Skip to content

Commit 0d533fc

Browse files
committed
fix: pass ending_timestamp correctly
1 parent c623644 commit 0d533fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ impl RawDeltaTable {
697697
let ending_ts = DateTime::<Utc>::from_str(&et)
698698
.map_err(|pe| PyValueError::new_err(pe.to_string()))?
699699
.to_utc();
700-
cdf_read = cdf_read.with_starting_timestamp(ending_ts);
700+
cdf_read = cdf_read.with_ending_timestamp(ending_ts);
701701
}
702702

703703
if let Some(columns) = columns {

0 commit comments

Comments
 (0)