Skip to content

Commit 9e6df6a

Browse files
chore(deps): update datafusion to v43 (major) (#1261)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [datafusion](https://datafusion.apache.org) ([source](https://redirect.github.com/apache/datafusion)) | workspace.dependencies | major | `42.0.0` -> `43.0.0` | | [datafusion-common](https://datafusion.apache.org) ([source](https://redirect.github.com/apache/datafusion)) | workspace.dependencies | major | `42.0.0` -> `43.0.0` | | [datafusion-execution](https://datafusion.apache.org) ([source](https://redirect.github.com/apache/datafusion)) | workspace.dependencies | major | `42.0.0` -> `43.0.0` | | [datafusion-expr](https://datafusion.apache.org) ([source](https://redirect.github.com/apache/datafusion)) | workspace.dependencies | major | `42.0.0` -> `43.0.0` | | [datafusion-physical-expr](https://datafusion.apache.org) ([source](https://redirect.github.com/apache/datafusion)) | workspace.dependencies | major | `42.0.0` -> `43.0.0` | | [datafusion-physical-plan](https://datafusion.apache.org) ([source](https://redirect.github.com/apache/datafusion)) | workspace.dependencies | major | `42.0.0` -> `43.0.0` | --- ### Release Notes <details> <summary>apache/datafusion (datafusion)</summary> ### [`v43.0.0`](https://redirect.github.com/apache/datafusion/compare/42.2.0...43.0.0) [Compare Source](https://redirect.github.com/apache/datafusion/compare/42.2.0...43.0.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/spiraldb/vortex). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS43LjEiLCJ1cGRhdGVkSW5WZXIiOiIzOS43LjEiLCJ0YXJnZXRCcmFuY2giOiJkZXZlbG9wIiwibGFiZWxzIjpbXX0=--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Robert Kruszewski <[email protected]>
1 parent 5a12ac3 commit 9e6df6a

File tree

4 files changed

+67
-50
lines changed

4 files changed

+67
-50
lines changed

Cargo.lock

Lines changed: 58 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ clap = "4.5.13"
6969
criterion = { version = "0.5.1", features = ["html_reports"] }
7070
croaring = "2.1.0"
7171
csv = "1.3.0"
72-
datafusion = { version = "42.0.0", default-features = false }
73-
datafusion-common = "42.0.0"
74-
datafusion-execution = "42.0.0"
75-
datafusion-expr = "42.0.0"
76-
datafusion-physical-expr = "42.0.0"
77-
datafusion-physical-plan = "42.0.0"
72+
datafusion = { version = "43.0.0", default-features = false }
73+
datafusion-common = "43.0.0"
74+
datafusion-execution = "43.0.0"
75+
datafusion-expr = "43.0.0"
76+
datafusion-physical-expr = "43.0.0"
77+
datafusion-physical-plan = "43.0.0"
7878
divan = "0.1.14"
7979
duckdb = "1.0.0"
8080
enum-iterator = "2.0.0"

vortex-datafusion/src/persistent/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use object_store::path::Path;
77
use object_store::ObjectMeta;
88
use vortex_array::Context;
99

10-
#[derive(Clone)]
10+
#[derive(Debug, Clone)]
1111
pub struct VortexFile {
1212
pub(crate) object_meta: ObjectMeta,
1313
}
@@ -32,7 +32,7 @@ impl VortexFile {
3232
}
3333
}
3434

35-
#[derive(Default)]
35+
#[derive(Debug, Default)]
3636
pub struct VortexTableOptions {
3737
pub(crate) data_files: Vec<VortexFile>,
3838
pub(crate) schema: Option<SchemaRef>,

vortex-datafusion/src/persistent/provider.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ use super::config::VortexTableOptions;
2121
use crate::can_be_pushed_down;
2222
use crate::persistent::execution::VortexExec;
2323

24+
#[derive(Debug)]
2425
pub struct VortexFileTableProvider {
2526
schema_ref: SchemaRef,
2627
object_store_url: ObjectStoreUrl,

0 commit comments

Comments
 (0)