Skip to content

Commit

Permalink
Update to object_store 0.6 and arrow 41 (#6374)
Browse files Browse the repository at this point in the history
* Update object_store 0.6 and arrow

* Remove pin

* Fix pyarrow

* Tomlfmt

* Update flight_sql_service

* Fix parquet_sql_multiple_files
  • Loading branch information
tustvold authored Jun 6, 2023
1 parent 70d633a commit 91e75d7
Show file tree
Hide file tree
Showing 31 changed files with 288 additions and 119 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ repository = "https://github.com/apache/arrow-datafusion"
rust-version = "1.64"

[workspace.dependencies]
arrow = { version = "40.0.0", features = ["prettyprint"] }
arrow-flight = { version = "40.0.0", features = ["flight-sql-experimental"] }
arrow-buffer = { version = "40.0.0", default-features = false }
arrow-schema = { version = "40.0.0", default-features = false }
arrow-array = { version = "40.0.0", default-features = false, features = ["chrono-tz"] }
parquet = { version = "40.0.0", features = ["arrow", "async", "object_store"] }
arrow = { version = "41.0.0", features = ["prettyprint"] }
arrow-flight = { version = "41.0.0", features = ["flight-sql-experimental"] }
arrow-buffer = { version = "41.0.0", default-features = false }
arrow-schema = { version = "41.0.0", default-features = false }
arrow-array = { version = "41.0.0", default-features = false, features = ["chrono-tz"] }
parquet = { version = "41.0.0", features = ["arrow", "async", "object_store"] }

[profile.release]
codegen-units = 1
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/src/bin/parquet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ impl Opt {

if let Some(s) = self.page_size {
props_builder = props_builder
.set_data_pagesize_limit(s)
.set_data_page_size_limit(s)
.set_write_batch_size(s);
}

Expand Down
Loading

0 comments on commit 91e75d7

Please sign in to comment.