Skip to content

Commit

Permalink
Bumped arrow. (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao authored Apr 18, 2021
1 parent 622e025 commit a07cd6f
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions ballista/rust/benchmarks/tpch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ edition = "2018"
ballista = { path="../../client" }
datafusion = { path = "../../../../datafusion" }

arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
parquet = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
arrow = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }
parquet = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }

env_logger = "0.8"
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] }
Expand Down
2 changes: 1 addition & 1 deletion ballista/rust/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ futures = "0.3"
log = "0.4"
tokio = "1.0"

arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
arrow = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }
datafusion = { path = "../../../datafusion" }
4 changes: 2 additions & 2 deletions ballista/rust/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ tokio = "1.0"
tonic = "0.4"
uuid = { version = "0.8", features = ["v4"] }

arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
arrow-flight = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
arrow = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }
arrow-flight = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }

datafusion = { path = "../../../datafusion" }

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 @@ -45,8 +45,8 @@ tokio-stream = "0.1"
tonic = "0.4"
uuid = { version = "0.8", features = ["v4"] }

arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
arrow-flight = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
arrow = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }
arrow-flight = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }

datafusion = { path = "../../../datafusion" }

Expand Down
2 changes: 1 addition & 1 deletion ballista/rust/scheduler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ tonic = "0.4"
tower = { version = "0.4" }
warp = "0.3"

arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
arrow = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }
datafusion = { path = "../../../datafusion" }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ simd = ["datafusion/simd"]
snmalloc = ["snmalloc-rs"]

[dependencies]
arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
parquet = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
arrow = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }
parquet = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }
datafusion = { path = "../datafusion" }
structopt = { version = "0.3", default-features = false }
tokio = { version = "^1.0", features = ["macros", "rt", "rt-multi-thread"] }
Expand Down
4 changes: 2 additions & 2 deletions datafusion-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ publish = false


[dev-dependencies]
arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
arrow-flight = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
arrow = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }
arrow-flight = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }
datafusion = { path = "../datafusion" }
prost = "0.7"
tonic = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions datafusion/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ unicode_expressions = ["unicode-segmentation"]
[dependencies]
ahash = "0.7"
hashbrown = "0.11"
arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c", features = ["prettyprint"] }
parquet = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c", features = ["arrow"] }
arrow = { git = "https://github.com/apache/arrow-rs", rev = "08a662f", features = ["prettyprint"] }
parquet = { git = "https://github.com/apache/arrow-rs", rev = "08a662f", features = ["arrow"] }
sqlparser = "0.9.0"
clap = "2.33"
rustyline = {version = "7.0", optional = true}
Expand Down

0 comments on commit a07cd6f

Please sign in to comment.