From 3e3204e24b33359ec12fa9ad09d58d28a69fe2d9 Mon Sep 17 00:00:00 2001 From: Jiayu Liu Date: Sun, 13 Jun 2021 13:22:41 +0800 Subject: [PATCH 1/2] update version --- datafusion/Cargo.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 0668ec016ba1..1dc19c208794 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -46,8 +46,10 @@ unicode_expressions = ["unicode-segmentation"] [dependencies] ahash = "0.7" hashbrown = "0.11" -arrow = { version = "4.0", features = ["prettyprint"] } -parquet = { version = "4.0", features = ["arrow"] } +# arrow = { version = "4.0", features = ["prettyprint"] } +# parquet = { version = "4.0", features = ["arrow"] } +arrow = { git = "https://github.com/apache/arrow-rs.git", rev = "4.3.0", features = ["prettyprint"] } +parquet = { git = "https://github.com/apache/arrow-rs.git", rev = "4.3.0", features = ["arrow"] } sqlparser = "0.9.0" paste = "^1.0" num_cpus = "1.13.0" From b99a2372eb1728b7d71295060ae190494c953a79 Mon Sep 17 00:00:00 2001 From: Jiayu Liu Date: Sun, 13 Jun 2021 13:33:15 +0800 Subject: [PATCH 2/2] update tag --- 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 1f23a2a42e2a..0e6d207399cc 100644 --- a/ballista/rust/core/Cargo.toml +++ b/ballista/rust/core/Cargo.toml @@ -40,7 +40,7 @@ tokio = "1.0" tonic = "0.4" uuid = { version = "0.8", features = ["v4"] } -arrow-flight = { version = "4.0" } +arrow-flight = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0" } datafusion = { path = "../../../datafusion" } diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index 7574fca82774..0149f832e9e2 100644 --- a/ballista/rust/executor/Cargo.toml +++ b/ballista/rust/executor/Cargo.toml @@ -44,8 +44,8 @@ tokio-stream = "0.1" tonic = "0.4" uuid = { version = "0.8", features = ["v4"] } -arrow = { version = "4.0" } -arrow-flight = { version = "4.0" } +arrow = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0" } +arrow-flight = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0" } datafusion = { path = "../../../datafusion" } diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml index cd17b61984d5..08cc7a6076a7 100644 --- a/datafusion-cli/Cargo.toml +++ b/datafusion-cli/Cargo.toml @@ -31,4 +31,4 @@ clap = "2.33" rustyline = "8.0" tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync"] } datafusion = { path = "../datafusion" } -arrow = { version = "4.0" } +arrow = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0" } diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml index 886f8f5e74f6..de9ae1616a5a 100644 --- a/datafusion-examples/Cargo.toml +++ b/datafusion-examples/Cargo.toml @@ -29,7 +29,7 @@ publish = false [dev-dependencies] -arrow-flight = { version = "4.0" } +arrow-flight = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0" } datafusion = { path = "../datafusion" } prost = "0.7" tonic = "0.4" diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 1dc19c208794..7c5986d2f30f 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -48,8 +48,8 @@ ahash = "0.7" hashbrown = "0.11" # arrow = { version = "4.0", features = ["prettyprint"] } # parquet = { version = "4.0", features = ["arrow"] } -arrow = { git = "https://github.com/apache/arrow-rs.git", rev = "4.3.0", features = ["prettyprint"] } -parquet = { git = "https://github.com/apache/arrow-rs.git", rev = "4.3.0", features = ["arrow"] } +arrow = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0", features = ["prettyprint"] } +parquet = { git = "https://github.com/apache/arrow-rs.git", tag = "4.3.0", features = ["arrow"] } sqlparser = "0.9.0" paste = "^1.0" num_cpus = "1.13.0"