Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/core/src/kernel/snapshot/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ impl EagerSnapshot {
.boxed()
}

#[deprecated(since = "0.30.0", note = "Use `files` with kernel predicate instead.")]
#[deprecated(since = "0.29.0", note = "Use `files` with kernel predicate instead.")]
pub fn file_views_by_partitions(
&self,
log_store: &dyn LogStore,
Expand Down
6 changes: 3 additions & 3 deletions crates/core/src/table/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ impl DeltaTableState {
/// List of unexpired tombstones (remove actions) representing files removed from table state.
/// The retention period is set by `deletedFileRetentionDuration` with default value of 1 week.
#[deprecated(
since = "0.30.0",
since = "0.29.0",
note = "Use `all_tombstones` instead and filter by retention timestamp."
)]
pub fn unexpired_tombstones(
Expand Down Expand Up @@ -178,7 +178,7 @@ impl DeltaTableState {
/// Returns an iterator of file names present in the loaded state
#[inline]
#[deprecated(
since = "0.30.0",
since = "0.29.0",
note = "Simple object store paths are not meaningful once we support full urls."
)]
pub fn file_paths_iter(&self) -> impl Iterator<Item = Path> + '_ {
Expand Down Expand Up @@ -227,7 +227,7 @@ impl DeltaTableState {
///
/// A stream of logical file views that match the partition filters.
#[deprecated(
since = "0.30.0",
since = "0.29.0",
note = "Use `.snapshot().files(log_store, predicate)` with a kernel predicate instead."
)]
pub fn get_active_add_actions_by_partitions(
Expand Down
Loading