Skip to content

Commit ec0593a

Browse files
waynexiaalamb
authored andcommitted
build(deps): update Arrow/Parquet to 52.0, object-store to 0.10 (apache#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]>
1 parent 1bf55bd commit ec0593a

File tree

50 files changed

+777
-374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+777
-374
lines changed

Cargo.toml

+23-11
Original file line numberDiff line numberDiff line change
@@ -64,20 +64,28 @@ version = "38.0.0"
6464
ahash = { version = "0.8", default-features = false, features = [
6565
"runtime-rng",
6666
] }
67-
arrow = { version = "51.0.0", features = ["prettyprint"] }
68-
arrow-array = { version = "51.0.0", default-features = false, features = ["chrono-tz"] }
69-
arrow-buffer = { version = "51.0.0", default-features = false }
70-
arrow-flight = { version = "51.0.0", features = ["flight-sql-experimental"] }
71-
arrow-ipc = { version = "51.0.0", default-features = false, features = ["lz4"] }
72-
arrow-ord = { version = "51.0.0", default-features = false }
73-
arrow-schema = { version = "51.0.0", default-features = false }
74-
arrow-string = { version = "51.0.0", default-features = false }
67+
arrow = { version = "52.0.0", features = [
68+
"prettyprint",
69+
] }
70+
arrow-array = { version = "52.0.0", default-features = false, features = [
71+
"chrono-tz",
72+
] }
73+
arrow-buffer = { version = "52.0.0", default-features = false }
74+
arrow-flight = { version = "52.0.0", features = [
75+
"flight-sql-experimental",
76+
] }
77+
arrow-ipc = { version = "52.0.0", default-features = false, features = [
78+
"lz4",
79+
] }
80+
arrow-ord = { version = "52.0.0", default-features = false }
81+
arrow-schema = { version = "52.0.0", default-features = false }
82+
arrow-string = { version = "52.0.0", default-features = false }
7583
async-trait = "0.1.73"
7684
bigdecimal = "=0.4.1"
7785
bytes = "1.4"
7886
chrono = { version = "0.4.34", default-features = false }
7987
ctor = "0.2.0"
80-
dashmap = "5.4.0"
88+
dashmap = "5.5.0"
8189
datafusion = { path = "datafusion/core", version = "38.0.0", default-features = false }
8290
datafusion-common = { path = "datafusion/common", version = "38.0.0", default-features = false }
8391
datafusion-common-runtime = { path = "datafusion/common-runtime", version = "38.0.0" }
@@ -104,9 +112,13 @@ indexmap = "2.0.0"
104112
itertools = "0.12"
105113
log = "^0.4"
106114
num_cpus = "1.13.0"
107-
object_store = { version = "0.9.1", default-features = false }
115+
object_store = { version = "0.10.1", default-features = false }
108116
parking_lot = "0.12"
109-
parquet = { version = "51.0.0", default-features = false, features = ["arrow", "async", "object_store"] }
117+
parquet = { version = "52.0.0", default-features = false, features = [
118+
"arrow",
119+
"async",
120+
"object_store",
121+
] }
110122
rand = "0.8"
111123
regex = "1.8"
112124
rstest = "0.21.0"

0 commit comments

Comments
 (0)