Skip to content

Commit

Permalink
fix: pass ending_timestamp correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco committed Nov 24, 2024
1 parent c623644 commit 0d533fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ impl RawDeltaTable {
let ending_ts = DateTime::<Utc>::from_str(&et)
.map_err(|pe| PyValueError::new_err(pe.to_string()))?
.to_utc();
cdf_read = cdf_read.with_starting_timestamp(ending_ts);
cdf_read = cdf_read.with_ending_timestamp(ending_ts);
}

if let Some(columns) = columns {
Expand Down

0 comments on commit 0d533fc

Please sign in to comment.