Skip to content

Commit

Permalink
chore(deps): update datafusion to v43 (major) (#1261)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
renovate[bot] and robert3005 authored Nov 10, 2024
1 parent 5a12ac3 commit 9e6df6a
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 50 deletions.
100 changes: 58 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ clap = "4.5.13"
criterion = { version = "0.5.1", features = ["html_reports"] }
croaring = "2.1.0"
csv = "1.3.0"
datafusion = { version = "42.0.0", default-features = false }
datafusion-common = "42.0.0"
datafusion-execution = "42.0.0"
datafusion-expr = "42.0.0"
datafusion-physical-expr = "42.0.0"
datafusion-physical-plan = "42.0.0"
datafusion = { version = "43.0.0", default-features = false }
datafusion-common = "43.0.0"
datafusion-execution = "43.0.0"
datafusion-expr = "43.0.0"
datafusion-physical-expr = "43.0.0"
datafusion-physical-plan = "43.0.0"
divan = "0.1.14"
duckdb = "1.0.0"
enum-iterator = "2.0.0"
Expand Down
4 changes: 2 additions & 2 deletions vortex-datafusion/src/persistent/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use object_store::path::Path;
use object_store::ObjectMeta;
use vortex_array::Context;

#[derive(Clone)]
#[derive(Debug, Clone)]
pub struct VortexFile {
pub(crate) object_meta: ObjectMeta,
}
Expand All @@ -32,7 +32,7 @@ impl VortexFile {
}
}

#[derive(Default)]
#[derive(Debug, Default)]
pub struct VortexTableOptions {
pub(crate) data_files: Vec<VortexFile>,
pub(crate) schema: Option<SchemaRef>,
Expand Down
1 change: 1 addition & 0 deletions vortex-datafusion/src/persistent/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ use super::config::VortexTableOptions;
use crate::can_be_pushed_down;
use crate::persistent::execution::VortexExec;

#[derive(Debug)]
pub struct VortexFileTableProvider {
schema_ref: SchemaRef,
object_store_url: ObjectStoreUrl,
Expand Down

0 comments on commit 9e6df6a

Please sign in to comment.