adriangbot commented on PR #20950: URL: https://github.com/apache/datafusion/pull/20950#issuecomment-4061538048
Benchmark for [this request](https://github.com/apache/datafusion/pull/20950#issuecomment-4061533577) failed. Last 20 lines of output: <details><summary>Click to expand</summary> ``` | 207 | return Ok(Box::new(GroupValuesPacked::try_new(schema)?)); | -------------------------- ^^^^^^ expected `&Arc<Schema>`, found `Arc<Schema>` | | | arguments to this function are incorrect | = note: expected reference `&Arc<_>` found struct `Arc<_>` note: associated function defined here --> datafusion/physical-plan/src/aggregates/group_values/multi_group_by/packed.rs:119:12 | 119 | pub fn try_new(schema: &SchemaRef) -> Result<Self> { | ^^^^^^^ ------------------ help: consider borrowing here | 207 | return Ok(Box::new(GroupValuesPacked::try_new(&schema)?)); | + For more information about this error, try `rustc --explain E0308`. error: could not compile `datafusion-physical-plan` (lib) due to 1 previous error ``` </details> -- 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]
