diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index 0d81f32cbea90..d0572c14414a6 100644 --- a/ballista/rust/executor/Cargo.toml +++ b/ballista/rust/executor/Cargo.toml @@ -29,7 +29,7 @@ edition = "2018" snmalloc = ["snmalloc-rs"] [dependencies] -arrow = { version = "8.0.0" } +arrow = { version = "9.0.2" } arrow-flight = { version = "8.0.0" } anyhow = "1" async-trait = "0.1.36" diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml index 40a07851928c9..1b56c02a70021 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.2" } 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 081dc17a701da..3c8d22d49be1a 100644 --- a/datafusion-common/Cargo.toml +++ b/datafusion-common/Cargo.toml @@ -37,7 +37,7 @@ avro = ["avro-rs"] pyarrow = ["pyo3"] [dependencies] -arrow = { version = "8.0.0", features = ["prettyprint"] } +arrow = { version = "9.0.2", features = ["prettyprint"] } parquet = { version = "8.0.0", features = ["arrow"] } avro-rs = { version = "0.13", features = ["snappy"], optional = true } pyo3 = { version = "0.15", optional = true } diff --git a/datafusion-expr/Cargo.toml b/datafusion-expr/Cargo.toml index aac76528b196a..a6e222771ebbd 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.2", features = ["prettyprint"] } sqlparser = "0.14" ahash = { version = "0.7", default-features = false } diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 63029a6ae66bb..053cedd29e155 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -56,7 +56,7 @@ 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"] } +arrow = { version = "9.0.2", features = ["prettyprint"] } parquet = { version = "8.0.0", features = ["arrow"] } sqlparser = "0.14" paste = "^1.0"