Skip to content

Commit a07cd6f

Browse files
Bumped arrow. (#7)
1 parent 622e025 commit a07cd6f

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

ballista/rust/benchmarks/tpch/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ edition = "2018"
2828
ballista = { path="../../client" }
2929
datafusion = { path = "../../../../datafusion" }
3030

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

3434
env_logger = "0.8"
3535
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] }

ballista/rust/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ futures = "0.3"
3131
log = "0.4"
3232
tokio = "1.0"
3333

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

ballista/rust/core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ tokio = "1.0"
4040
tonic = "0.4"
4141
uuid = { version = "0.8", features = ["v4"] }
4242

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

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

ballista/rust/executor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ tokio-stream = "0.1"
4545
tonic = "0.4"
4646
uuid = { version = "0.8", features = ["v4"] }
4747

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

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

ballista/rust/scheduler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ tonic = "0.4"
5252
tower = { version = "0.4" }
5353
warp = "0.3"
5454

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

5858
[dev-dependencies]

benchmarks/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ simd = ["datafusion/simd"]
3131
snmalloc = ["snmalloc-rs"]
3232

3333
[dependencies]
34-
arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
35-
parquet = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
34+
arrow = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }
35+
parquet = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }
3636
datafusion = { path = "../datafusion" }
3737
structopt = { version = "0.3", default-features = false }
3838
tokio = { version = "^1.0", features = ["macros", "rt", "rt-multi-thread"] }

datafusion-examples/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ publish = false
2929

3030

3131
[dev-dependencies]
32-
arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
33-
arrow-flight = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c" }
32+
arrow = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }
33+
arrow-flight = { git = "https://github.com/apache/arrow-rs", rev = "08a662f" }
3434
datafusion = { path = "../datafusion" }
3535
prost = "0.7"
3636
tonic = "0.4"

datafusion/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ unicode_expressions = ["unicode-segmentation"]
5050
[dependencies]
5151
ahash = "0.7"
5252
hashbrown = "0.11"
53-
arrow = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c", features = ["prettyprint"] }
54-
parquet = { git = "https://github.com/apache/arrow-rs", rev = "e023b4c", features = ["arrow"] }
53+
arrow = { git = "https://github.com/apache/arrow-rs", rev = "08a662f", features = ["prettyprint"] }
54+
parquet = { git = "https://github.com/apache/arrow-rs", rev = "08a662f", features = ["arrow"] }
5555
sqlparser = "0.9.0"
5656
clap = "2.33"
5757
rustyline = {version = "7.0", optional = true}

0 commit comments

Comments
 (0)