diff --git a/ballista/rust/benchmarks/tpch/Cargo.toml b/ballista/rust/benchmarks/tpch/Cargo.toml index 9a7d65199266..8d62e20e17e1 100644 --- a/ballista/rust/benchmarks/tpch/Cargo.toml +++ b/ballista/rust/benchmarks/tpch/Cargo.toml @@ -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"] } diff --git a/ballista/rust/client/Cargo.toml b/ballista/rust/client/Cargo.toml index bf40cdb499ac..6ac86875169b 100644 --- a/ballista/rust/client/Cargo.toml +++ b/ballista/rust/client/Cargo.toml @@ -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" } diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml index 58e6d22734ac..e9d7682473f1 100644 --- a/ballista/rust/core/Cargo.toml +++ b/ballista/rust/core/Cargo.toml @@ -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" } diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index ccf30cf16eb7..79ceabe2dd66 100644 --- a/ballista/rust/executor/Cargo.toml +++ b/ballista/rust/executor/Cargo.toml @@ -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" } diff --git a/ballista/rust/scheduler/Cargo.toml b/ballista/rust/scheduler/Cargo.toml index 197a2319154d..ce8ca09e15b2 100644 --- a/ballista/rust/scheduler/Cargo.toml +++ b/ballista/rust/scheduler/Cargo.toml @@ -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] diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index 7fd844471686..66a81be26b36 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -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"] } diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml index 1a060504df72..7f7c239d0f54 100644 --- a/datafusion-examples/Cargo.toml +++ b/datafusion-examples/Cargo.toml @@ -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" diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 88a50dd5a443..443bd7e02041 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -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}