Skip to content

Commit

Permalink
build(deps): update Arrow/Parquet to 52.0, object-store to 0.10 (#…
Browse files Browse the repository at this point in the history
…10765)

* fix compile on default feature config

Signed-off-by: Ruihang Xia <[email protected]>

* fix test of common, functions, optimizer and physical-expr

Signed-off-by: Ruihang Xia <[email protected]>

* fix other tests

Signed-off-by: Ruihang Xia <[email protected]>

* fix one last test

Signed-off-by: Ruihang Xia <[email protected]>

* fix clippy warnings

Signed-off-by: Ruihang Xia <[email protected]>

* fix datafusion-cli

Signed-off-by: Ruihang Xia <[email protected]>

* switch to git deps

Signed-off-by: Ruihang Xia <[email protected]>

* regen proto file

Signed-off-by: Ruihang Xia <[email protected]>

* fix pyo3 feature

Signed-off-by: Ruihang Xia <[email protected]>

* fix slt

Signed-off-by: Ruihang Xia <[email protected]>

* fix symmetric hash join cases

Signed-off-by: Ruihang Xia <[email protected]>

* update integration result

Signed-off-by: Ruihang Xia <[email protected]>

* fix up spill test

Signed-off-by: Ruihang Xia <[email protected]>

* shift to the released packages

Signed-off-by: Ruihang Xia <[email protected]>

* Update cargo.lock

* Update datafusion/optimizer/src/analyzer/type_coercion.rs

Co-authored-by: Andrew Lamb <[email protected]>

* update document

Signed-off-by: Ruihang Xia <[email protected]>

* move memory limit to parameter pos

Signed-off-by: Ruihang Xia <[email protected]>

---------

Signed-off-by: Ruihang Xia <[email protected]>
Co-authored-by: Andrew Lamb <[email protected]>
  • Loading branch information
waynexia and alamb authored Jun 7, 2024
1 parent 8fcb3e4 commit cb9068c
Show file tree
Hide file tree
Showing 50 changed files with 777 additions and 374 deletions.
34 changes: 23 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,20 +64,28 @@ version = "38.0.0"
ahash = { version = "0.8", default-features = false, features = [
"runtime-rng",
] }
arrow = { version = "51.0.0", features = ["prettyprint"] }
arrow-array = { version = "51.0.0", default-features = false, features = ["chrono-tz"] }
arrow-buffer = { version = "51.0.0", default-features = false }
arrow-flight = { version = "51.0.0", features = ["flight-sql-experimental"] }
arrow-ipc = { version = "51.0.0", default-features = false, features = ["lz4"] }
arrow-ord = { version = "51.0.0", default-features = false }
arrow-schema = { version = "51.0.0", default-features = false }
arrow-string = { version = "51.0.0", default-features = false }
arrow = { version = "52.0.0", features = [
"prettyprint",
] }
arrow-array = { version = "52.0.0", default-features = false, features = [
"chrono-tz",
] }
arrow-buffer = { version = "52.0.0", default-features = false }
arrow-flight = { version = "52.0.0", features = [
"flight-sql-experimental",
] }
arrow-ipc = { version = "52.0.0", default-features = false, features = [
"lz4",
] }
arrow-ord = { version = "52.0.0", default-features = false }
arrow-schema = { version = "52.0.0", default-features = false }
arrow-string = { version = "52.0.0", default-features = false }
async-trait = "0.1.73"
bigdecimal = "=0.4.1"
bytes = "1.4"
chrono = { version = "0.4.34", default-features = false }
ctor = "0.2.0"
dashmap = "5.4.0"
dashmap = "5.5.0"
datafusion = { path = "datafusion/core", version = "38.0.0", default-features = false }
datafusion-common = { path = "datafusion/common", version = "38.0.0", default-features = false }
datafusion-common-runtime = { path = "datafusion/common-runtime", version = "38.0.0" }
Expand All @@ -104,9 +112,13 @@ indexmap = "2.0.0"
itertools = "0.12"
log = "^0.4"
num_cpus = "1.13.0"
object_store = { version = "0.9.1", default-features = false }
object_store = { version = "0.10.1", default-features = false }
parking_lot = "0.12"
parquet = { version = "51.0.0", default-features = false, features = ["arrow", "async", "object_store"] }
parquet = { version = "52.0.0", default-features = false, features = [
"arrow",
"async",
"object_store",
] }
rand = "0.8"
regex = "1.8"
rstest = "0.21.0"
Expand Down
Loading

0 comments on commit cb9068c

Please sign in to comment.