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 eb121ba  Update datafusion to use arrow 9.0.0 (#1775)
eb121ba is described below

commit eb121bade69d13f799779c5ba92ec8794cbc0bc9
Author: Andrew Lamb <[email protected]>
AuthorDate: Mon Feb 14 07:03:53 2022 -0500

    Update datafusion to use arrow 9.0.0 (#1775)
    
    * Update datafusion to use arrow 9.0.0
    
    * Update to 9.0.3 in patch
    
    * Remove patch
---
 ballista/rust/core/Cargo.toml     | 2 +-
 ballista/rust/executor/Cargo.toml | 4 ++--
 datafusion-cli/Cargo.toml         | 2 +-
 datafusion-common/Cargo.toml      | 4 ++--
 datafusion-examples/Cargo.toml    | 2 +-
 datafusion-expr/Cargo.toml        | 2 +-
 datafusion/Cargo.toml             | 4 ++--
 datafusion/fuzz-utils/Cargo.toml  | 2 +-
 8 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml
index ec9353c..ed433d4 100644
--- a/ballista/rust/core/Cargo.toml
+++ b/ballista/rust/core/Cargo.toml
@@ -45,7 +45,7 @@ chrono = { version = "0.4", default-features = false }
 clap = { version = "3", features = ["derive", "cargo"] }
 parse_arg = "0.1.3"
 
-arrow-flight = { version = "8.0.0"  }
+arrow-flight = { version = "9.0.0"  }
 datafusion = { path = "../../../datafusion", version = "7.0.0" }
 
 parking_lot = "0.12"
diff --git a/ballista/rust/executor/Cargo.toml 
b/ballista/rust/executor/Cargo.toml
index 0d81f32..8f0d29e 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 = "8.0.0"  }
-arrow-flight = { version = "8.0.0"  }
+arrow = { version = "9.0.0"  }
+arrow-flight = { version = "9.0.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 40a0785..448c854 100644
--- a/datafusion-cli/Cargo.toml
+++ b/datafusion-cli/Cargo.toml
@@ -32,6 +32,6 @@ clap = { version = "3", features = ["derive", "cargo"] }
 rustyline = "9.0"
 tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", 
"sync", "parking_lot"] }
 datafusion = { path = "../datafusion", version = "7.0.0" }
-arrow = { version = "8.0.0" }
+arrow = { version = "9.0.0" }
 ballista = { path = "../ballista/rust/client", version = "0.6.0" }
 env_logger = "0.9"
\ No newline at end of file
diff --git a/datafusion-common/Cargo.toml b/datafusion-common/Cargo.toml
index 081dc17..a557313 100644
--- a/datafusion-common/Cargo.toml
+++ b/datafusion-common/Cargo.toml
@@ -37,8 +37,8 @@ avro = ["avro-rs"]
 pyarrow = ["pyo3"]
 
 [dependencies]
-arrow = { version = "8.0.0", features = ["prettyprint"] }
-parquet = { version = "8.0.0", features = ["arrow"] }
+arrow = { version = "9.0.0", features = ["prettyprint"] }
+parquet = { version = "9.0.0", features = ["arrow"] }
 avro-rs = { version = "0.13", features = ["snappy"], optional = true }
 pyo3 = { version = "0.15", optional = true }
 sqlparser = "0.14"
diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml
index 88b602f..ebad6e2 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 = "8.0.0" }
+arrow-flight = { version = "9.0.0" }
 datafusion = { path = "../datafusion" }
 prost = "0.9"
 tonic = "0.6"
diff --git a/datafusion-expr/Cargo.toml b/datafusion-expr/Cargo.toml
index aac7652..c78493a 100644
--- a/datafusion-expr/Cargo.toml
+++ b/datafusion-expr/Cargo.toml
@@ -36,6 +36,6 @@ path = "src/lib.rs"
 
 [dependencies]
 datafusion-common = { path = "../datafusion-common", version = "7.0.0" }
-arrow = { version = "8.0.0", features = ["prettyprint"] }
+arrow = { version = "9.0.0", features = ["prettyprint"] }
 sqlparser = "0.14"
 ahash = { version = "0.7", default-features = false }
diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml
index 63029a6..d521ead 100644
--- a/datafusion/Cargo.toml
+++ b/datafusion/Cargo.toml
@@ -56,8 +56,8 @@ datafusion-common = { path = "../datafusion-common", version 
= "7.0.0" }
 datafusion-expr = { path = "../datafusion-expr", version = "7.0.0" }
 ahash = { version = "0.7", default-features = false }
 hashbrown = { version = "0.12", features = ["raw"] }
-arrow = { version = "8.0.0", features = ["prettyprint"] }
-parquet = { version = "8.0.0", features = ["arrow"] }
+arrow = { version = "9.0.0", features = ["prettyprint"] }
+parquet = { version = "9.0.0", features = ["arrow"] }
 sqlparser = "0.14"
 paste = "^1.0"
 num_cpus = "1.13.0"
diff --git a/datafusion/fuzz-utils/Cargo.toml b/datafusion/fuzz-utils/Cargo.toml
index 304cbfe..ff0ba52 100644
--- a/datafusion/fuzz-utils/Cargo.toml
+++ b/datafusion/fuzz-utils/Cargo.toml
@@ -23,6 +23,6 @@ edition = "2021"
 # See more keys and their definitions at 
https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-arrow = { version = "8.0.0", features = ["prettyprint"] }
+arrow = { version = "9.0.0", features = ["prettyprint"] }
 rand = "0.8"
 env_logger = "0.9.0"

Reply via email to