You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2021/11/20 11:24:58 UTC

[arrow-datafusion] branch master updated: upgrade arrow-rs (#1334)

This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new a6980a0  upgrade arrow-rs (#1334)
a6980a0 is described below

commit a6980a09d11d1dac2581fc682704f0cc080a5a97
Author: Kun Liu <li...@apache.org>
AuthorDate: Sat Nov 20 19:24:51 2021 +0800

    upgrade arrow-rs (#1334)
---
 ballista-examples/Cargo.toml      | 2 +-
 ballista/rust/core/Cargo.toml     | 2 +-
 ballista/rust/executor/Cargo.toml | 4 ++--
 datafusion-cli/Cargo.toml         | 2 +-
 datafusion-examples/Cargo.toml    | 2 +-
 datafusion/Cargo.toml             | 4 ++--
 6 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/ballista-examples/Cargo.toml b/ballista-examples/Cargo.toml
index 6b99f9b..13b6b55 100644
--- a/ballista-examples/Cargo.toml
+++ b/ballista-examples/Cargo.toml
@@ -29,7 +29,7 @@ publish = false
 rust-version = "1.56"
 
 [dependencies]
-arrow-flight = { version = "6.1.0" }
+arrow-flight = { version = "6.2.0" }
 datafusion = { path = "../datafusion" }
 ballista = { path = "../ballista/rust/client", version = "0.6.0"}
 prost = "0.8"
diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml
index 3d15e21..c59cd1e 100644
--- a/ballista/rust/core/Cargo.toml
+++ b/ballista/rust/core/Cargo.toml
@@ -43,7 +43,7 @@ tonic = "0.5"
 uuid = { version = "0.8", features = ["v4"] }
 chrono = "0.4"
 
-arrow-flight = { version = "6.1.0"  }
+arrow-flight = { version = "6.2.0"  }
 
 datafusion = { path = "../../../datafusion", version = "6.0.0" }
 
diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml
index 08116f5..f190392 100644
--- a/ballista/rust/executor/Cargo.toml
+++ b/ballista/rust/executor/Cargo.toml
@@ -29,8 +29,8 @@ edition = "2018"
 snmalloc = ["snmalloc-rs"]
 
 [dependencies]
-arrow = { version = "6.1.0"  }
-arrow-flight = { version = "6.1.0"  }
+arrow = { version = "6.2.0"  }
+arrow-flight = { version = "6.2.0"  }
 anyhow = "1"
 async-trait = "0.1.36"
 ballista-core = { path = "../core", version = "0.6.0" }
diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml
index 3212b67..14d0482 100644
--- a/datafusion-cli/Cargo.toml
+++ b/datafusion-cli/Cargo.toml
@@ -31,5 +31,5 @@ clap = "2.33"
 rustyline = "9.0"
 tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync"] }
 datafusion = { path = "../datafusion", version = "6.0.0" }
-arrow = { version = "6.1.0" }
+arrow = { version = "6.2.0" }
 ballista = { path = "../ballista/rust/client", version = "0.6.0" }
diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml
index 86c0830..7367f02 100644
--- a/datafusion-examples/Cargo.toml
+++ b/datafusion-examples/Cargo.toml
@@ -34,7 +34,7 @@ path = "examples/avro_sql.rs"
 required-features = ["datafusion/avro"]
 
 [dev-dependencies]
-arrow-flight = { version = "6.1.0" }
+arrow-flight = { version = "6.2.0" }
 datafusion = { path = "../datafusion" }
 prost = "0.8"
 tonic = "0.5"
diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml
index f0f368a..390dab4 100644
--- a/datafusion/Cargo.toml
+++ b/datafusion/Cargo.toml
@@ -52,8 +52,8 @@ avro = ["avro-rs", "num-traits"]
 [dependencies]
 ahash = "0.7"
 hashbrown = { version = "0.11", features = ["raw"] }
-arrow = { version = "6.1.0", features = ["prettyprint"] }
-parquet = { version = "6.1.0", features = ["arrow"] }
+arrow = { version = "6.2.0", features = ["prettyprint"] }
+parquet = { version = "6.2.0", features = ["arrow"] }
 sqlparser = "0.12"
 paste = "^1.0"
 num_cpus = "1.13.0"