Igosuki commented on pull request #910: URL: https://github.com/apache/arrow-datafusion/pull/910#issuecomment-917621958
@nevi-me fixed Found the following clippy errors unrelated to this PR with the latest nightly : ``` error: field is never read: `data_type` --> datafusion/src/physical_plan/expressions/average.rs:40:5 | 40 | data_type: DataType, | ^^^^^^^^^^^^^^^^^^^ | = note: `-D dead-code` implied by `-D warnings` error: field is never read: `nullable` --> datafusion/src/physical_plan/expressions/average.rs:41:5 | 41 | nullable: bool, | ^^^^^^^^^^^^^^ error: field is never read: `metrics` --> datafusion/src/physical_plan/parquet.rs:99:5 | 99 | metrics: ExecutionPlanMetricsSet, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ error: field is never read: `fun` --> datafusion/src/physical_plan/windows/built_in.rs:36:5 | 36 | fun: BuiltInWindowFunction, | ^^^^^^^^^^^^^^^^^^^^^^^^^^ error: field is never read: `window_frame` --> datafusion/src/physical_plan/windows/built_in.rs:40:5 | 40 | window_frame: Option<WindowFrame>, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ error: this `impl` can be derived --> datafusion/src/physical_plan/planner.rs:238:1 | 238 | / impl Default for DefaultPhysicalPlanner { 239 | | fn default() -> Self { 240 | | Self { 241 | | extension_planners: vec![], 242 | | } 243 | | } 244 | | } | |_^ ``` Had to fix like 20 clippy errors on my personal project with the new nightly -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org