Skip to content

Commit

Permalink
Update to arrow/parquet 52.2.0 (apache#11691)
Browse files Browse the repository at this point in the history
* Update to arrow/parquet 52.2.0

* Update datafuion-cli Cargo.lock

* Update to avoid deprecated feature
  • Loading branch information
alamb authored Jul 28, 2024
1 parent 5ad6067 commit 823a007
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 61 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,22 +66,22 @@ version = "40.0.0"
ahash = { version = "0.8", default-features = false, features = [
"runtime-rng",
] }
arrow = { version = "52.1.0", features = [
arrow = { version = "52.2.0", features = [
"prettyprint",
] }
arrow-array = { version = "52.1.0", default-features = false, features = [
arrow-array = { version = "52.2.0", default-features = false, features = [
"chrono-tz",
] }
arrow-buffer = { version = "52.1.0", default-features = false }
arrow-flight = { version = "52.1.0", features = [
arrow-buffer = { version = "52.2.0", default-features = false }
arrow-flight = { version = "52.2.0", features = [
"flight-sql-experimental",
] }
arrow-ipc = { version = "52.1.0", default-features = false, features = [
arrow-ipc = { version = "52.2.0", default-features = false, features = [
"lz4",
] }
arrow-ord = { version = "52.1.0", default-features = false }
arrow-schema = { version = "52.1.0", default-features = false }
arrow-string = { version = "52.1.0", default-features = false }
arrow-ord = { version = "52.2.0", default-features = false }
arrow-schema = { version = "52.2.0", default-features = false }
arrow-string = { version = "52.2.0", default-features = false }
async-trait = "0.1.73"
bigdecimal = "=0.4.1"
bytes = "1.4"
Expand Down Expand Up @@ -118,7 +118,7 @@ log = "^0.4"
num_cpus = "1.13.0"
object_store = { version = "0.10.1", default-features = false }
parking_lot = "0.12"
parquet = { version = "52.1.0", default-features = false, features = [
parquet = { version = "52.2.0", default-features = false, features = [
"arrow",
"async",
"object_store",
Expand Down
97 changes: 48 additions & 49 deletions datafusion-cli/Cargo.lock

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

4 changes: 2 additions & 2 deletions datafusion-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ rust-version = "1.76"
readme = "README.md"

[dependencies]
arrow = { version = "52.1.0" }
arrow = { version = "52.2.0" }
async-trait = "0.1.41"
aws-config = "0.55"
aws-credential-types = "0.55"
Expand All @@ -51,7 +51,7 @@ futures = "0.3"
mimalloc = { version = "0.1", default-features = false }
object_store = { version = "0.10.1", features = ["aws", "gcp", "http"] }
parking_lot = { version = "0.12" }
parquet = { version = "52.1.0", default-features = false }
parquet = { version = "52.2.0", default-features = false }
regex = "1.8"
rustyline = "11.0"
tokio = { version = "1.24", features = ["macros", "rt", "rt-multi-thread", "sync", "parking_lot", "signal"] }
Expand Down
2 changes: 1 addition & 1 deletion datafusion/core/src/datasource/file_format/parquet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1321,7 +1321,7 @@ mod tests {
.map(|i| i.to_string())
.collect();
let coll: Vec<_> = schema
.all_fields()
.flattened_fields()
.into_iter()
.map(|i| i.name().to_string())
.collect();
Expand Down

0 comments on commit 823a007

Please sign in to comment.