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

[arrow-datafusion] branch master updated: use arrow 6.1.0 (#1255)

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

houqp 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 e84a0bf  use arrow 6.1.0 (#1255)
e84a0bf is described below

commit e84a0bf9daa94fed54a20650270884983734dbfd
Author: Jiayu Liu <Ji...@users.noreply.github.com>
AuthorDate: Sun Nov 7 01:24:15 2021 +0800

    use arrow 6.1.0 (#1255)
---
 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 6ff6b60..e6c15e0 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.0.0" }
+arrow-flight = { version = "6.1.0" }
 datafusion = { path = "../datafusion" }
 ballista = { path = "../ballista/rust/client" }
 prost = "0.8"
diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml
index 4518e77..f90d03b 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.0.0"  }
+arrow-flight = { version = "6.1.0"  }
 
 datafusion = { path = "../../../datafusion", version = "5.1.0" }
 
diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml
index 5d26f39..5c01f1c 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.0.0"  }
-arrow-flight = { version = "6.0.0"  }
+arrow = { version = "6.1.0"  }
+arrow-flight = { version = "6.1.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 360e873..b1cc09a 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 = "5.1.0" }
-arrow = { version = "6.0.0" }
+arrow = { version = "6.1.0" }
 ballista = { path = "../ballista/rust/client", version = "0.6.0" }
diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml
index a087f57..86c0830 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.0.0" }
+arrow-flight = { version = "6.1.0" }
 datafusion = { path = "../datafusion" }
 prost = "0.8"
 tonic = "0.5"
diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml
index 8aac711..7df8c8f 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.0.0", features = ["prettyprint"] }
-parquet = { version = "6.0.0", features = ["arrow"] }
+arrow = { version = "6.1.0", features = ["prettyprint"] }
+parquet = { version = "6.1.0", features = ["arrow"] }
 sqlparser = "0.12"
 paste = "^1.0"
 num_cpus = "1.13.0"