kadai0308 opened a new pull request, #16068: URL: https://github.com/apache/datafusion/pull/16068
## Which issue does this PR close? - Closes https://github.com/apache/datafusion/issues/16061#issuecomment-2886309321 ## Rationale for this change Improve build times. ## What changes are included in this PR? Updating toolchain to Rust 1.87 and fixing associated errors and warnings. The main changes including: - `datafusion/common/src/stats.rs:355:9` and the following related changes ``` 359 - Present(ColumnStatistics), 359 + Present(Box<ColumnStatistics>), ``` - ` datafusion/expr/src/planner.rs:315:1` and the following related changes ``` 317 - Planned(Expr), 317 + Planned(Box<Expr>), ``` - ` datafusion/optimizer/src/simplify_expressions/expr_simplifier.rs:523:1` and the following related changes ``` 529 - SimplifyRuntimeError(DataFusionError, Expr), 529 + SimplifyRuntimeError(DataFusionError, Box<Expr>), ``` - ` datafusion/physical-plan/src/aggregates/mod.rs:349:1` and the following related changes ``` 351 - GroupedHash(GroupedHashAggregateStream), 351 + GroupedHash(Box<GroupedHashAggregateStream>), ``` - `datafusion/datasource-avro/src/avro_to_arrow/arrow_array_reader.rs:941:29` ``` 941 | fn resolve_u8(v: &Value) -> AvroResult<u8> { | ^^^^^^^^^^^^^^ the `Err`-variant is at least 256 bytes ``` ## Are these changes tested? ## Are there any user-facing changes? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
