Skip to content

Commit

Permalink
Update to arrow 9.1.0 (#1851)
Browse files Browse the repository at this point in the history
* Temporarily update to new arrow version

* Update versions to 9.1

* Apply suggestions from code review

Co-authored-by: Jiayu Liu <Jimexist@users.noreply.github.com>
  • Loading branch information
alamb and jimexist authored Mar 1, 2022
1 parent 1d2a154 commit 7eb3bd8
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion ballista/rust/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ chrono = { version = "0.4", default-features = false }
clap = { version = "3", features = ["derive", "cargo"] }
parse_arg = "0.1.3"

arrow-flight = { version = "9.0.0" }
arrow-flight = { version = "9.1" }
datafusion = { path = "../../../datafusion", version = "7.0.0" }

parking_lot = "0.12"
Expand Down
4 changes: 2 additions & 2 deletions ballista/rust/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ edition = "2018"
snmalloc = ["snmalloc-rs"]

[dependencies]
arrow = { version = "9.0.0" }
arrow-flight = { version = "9.0.0" }
arrow = { version = "9.1" }
arrow-flight = { version = "9.1" }
anyhow = "1"
async-trait = "0.1.36"
ballista-core = { path = "../core", version = "0.6.0" }
Expand Down
2 changes: 1 addition & 1 deletion datafusion-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ clap = { version = "3", features = ["derive", "cargo"] }
rustyline = "9.0"
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "parking_lot"] }
datafusion = { path = "../datafusion", version = "7.0.0" }
arrow = { version = "9.0.0" }
arrow = { version = "9.1" }
ballista = { path = "../ballista/rust/client", version = "0.6.0", optional=true }
env_logger = "0.9"
mimalloc = { version = "*", default-features = false }
4 changes: 2 additions & 2 deletions datafusion-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ pyarrow = ["pyo3"]
jit = ["cranelift-module"]

[dependencies]
arrow = { version = "9.0.0", features = ["prettyprint"] }
parquet = { version = "9.0.0", features = ["arrow"], optional = true }
arrow = { version = "9.1", features = ["prettyprint"] }
parquet = { version = "9.1", features = ["arrow"], optional = true }
avro-rs = { version = "0.13", features = ["snappy"], optional = true }
pyo3 = { version = "0.15", optional = true }
sqlparser = "0.14"
Expand Down
2 changes: 1 addition & 1 deletion datafusion-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ path = "examples/avro_sql.rs"
required-features = ["datafusion/avro"]

[dev-dependencies]
arrow-flight = { version = "9.0.0" }
arrow-flight = { version = "9.1" }
datafusion = { path = "../datafusion" }
prost = "0.9"
tonic = "0.6"
Expand Down
2 changes: 1 addition & 1 deletion datafusion-expr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ path = "src/lib.rs"

[dependencies]
datafusion-common = { path = "../datafusion-common", version = "7.0.0" }
arrow = { version = "9.0.0", features = ["prettyprint"] }
arrow = { version = "9.1", features = ["prettyprint"] }
sqlparser = "0.14"
ahash = { version = "0.7", default-features = false }
2 changes: 1 addition & 1 deletion datafusion-physical-expr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ unicode_expressions = ["unicode-segmentation"]
[dependencies]
datafusion-common = { path = "../datafusion-common", version = "7.0.0" }
datafusion-expr = { path = "../datafusion-expr", version = "7.0.0" }
arrow = { version = "9.0.0", features = ["prettyprint"] }
arrow = { version = "9.1", features = ["prettyprint"] }
paste = "^1.0"
ahash = { version = "0.7", default-features = false }
ordered-float = "2.10"
Expand Down
4 changes: 2 additions & 2 deletions datafusion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ datafusion-jit = { path = "../datafusion-jit", version = "7.0.0", optional = tru
datafusion-physical-expr = { path = "../datafusion-physical-expr", version = "7.0.0" }
ahash = { version = "0.7", default-features = false }
hashbrown = { version = "0.12", features = ["raw"] }
arrow = { version = "9.0.0", features = ["prettyprint"] }
parquet = { version = "9.0.0", features = ["arrow"] }
arrow = { version = "9.1", features = ["prettyprint"] }
parquet = { version = "9.1", features = ["arrow"] }
sqlparser = "0.14"
paste = "^1.0"
num_cpus = "1.13.0"
Expand Down
2 changes: 1 addition & 1 deletion datafusion/fuzz-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
arrow = { version = "9.0.0", features = ["prettyprint"] }
arrow = { version = "9.1", features = ["prettyprint"] }
rand = "0.8"
env_logger = "0.9.0"

0 comments on commit 7eb3bd8

Please sign in to comment.