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/30 21:54:25 UTC

[arrow-datafusion] branch master updated: upgrade the arrow-rs version (#1385)

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 0338b73  upgrade the arrow-rs version (#1385)
0338b73 is described below

commit 0338b7336d257bdbdc5eefceda5846e3a5b31409
Author: Kun Liu <li...@apache.org>
AuthorDate: Wed Dec 1 05:54:20 2021 +0800

    upgrade the arrow-rs version (#1385)
---
 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 ++--
 5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml
index c59cd1e..ee41669 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.2.0"  }
+arrow-flight = { version = "6.3.0"  }
 
 datafusion = { path = "../../../datafusion", version = "6.0.0" }
 
diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml
index f190392..6717a0a 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.2.0"  }
-arrow-flight = { version = "6.2.0"  }
+arrow = { version = "6.3.0"  }
+arrow-flight = { version = "6.3.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 54f3084..0434f09 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.2.0" }
+arrow = { version = "6.3.0" }
 ballista = { path = "../ballista/rust/client", version = "0.6.0" }
diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml
index bca0ec5..3e8a6ec 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.2.0" }
+arrow-flight = { version = "6.3.0" }
 datafusion = { path = "../datafusion" }
 prost = "0.8"
 tonic = "0.5"
diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml
index 390dab4..fbe84e3 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.2.0", features = ["prettyprint"] }
-parquet = { version = "6.2.0", features = ["arrow"] }
+arrow = { version = "6.3.0", features = ["prettyprint"] }
+parquet = { version = "6.3.0", features = ["arrow"] }
 sqlparser = "0.12"
 paste = "^1.0"
 num_cpus = "1.13.0"