Skip to content

Commit

Permalink
Update substrait requirement from 0.51 to 0.52 (#14107)
Browse files Browse the repository at this point in the history
* Update substrait requirement from 0.51 to 0.52

Updates the requirements on [substrait](https://github.com/substrait-io/substrait-rs) to permit the latest version.
- [Release notes](https://github.com/substrait-io/substrait-rs/releases)
- [Changelog](https://github.com/substrait-io/substrait-rs/blob/main/CHANGELOG.md)
- [Commits](substrait-io/substrait-rs@v0.51.0...v0.52.0)

---
updated-dependencies:
- dependency-name: substrait
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* Handle addition of `ReadType::IcebergTable`

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
mbrobbel and dependabot[bot] authored Jan 13, 2025
1 parent f9cc332 commit e8cac16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/substrait/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ object_store = { workspace = true }
pbjson-types = "0.7"
# TODO use workspace version
prost = "0.13"
substrait = { version = "0.51", features = ["serde"] }
substrait = { version = "0.52", features = ["serde"] }
url = { workspace = true }

[dev-dependencies]
Expand Down
1 change: 1 addition & 0 deletions datafusion/substrait/tests/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ pub mod test {
ReadType::LocalFiles(_) => todo!(),
ReadType::NamedTable(nt) => self.collect_named_table(r, nt)?,
ReadType::ExtensionTable(_) => todo!(),
ReadType::IcebergTable(_) => todo!(),
}
if let Some(expr) = r.filter.as_ref() {
self.collect_schemas_from_expr(expr)?
Expand Down

0 comments on commit e8cac16

Please sign in to comment.