alamb opened a new pull request, #6882: URL: https://github.com/apache/arrow-datafusion/pull/6882
# Which issue does this PR close? # Rationale for this change Fix a logical conflict from https://github.com/apache/arrow-datafusion/pull/6726 Ci is failing on main like this: https://github.com/apache/arrow-datafusion/actions/runs/5486691970/jobs/9997114358 ``` rror[E0433]: failed to resolve: use of undeclared type `DisplayFormatType` --> datafusion/core/src/physical_plan/streaming.rs:105:13 | 105 | DisplayFormatType::Default | DisplayFormatType::Verbose => { | ^^^^^^^^^^^^^^^^^ use of undeclared type `DisplayFormatType` error[E0433]: failed to resolve: use of undeclared type `DisplayFormatType` --> datafusion/core/src/physical_plan/streaming.rs:105:42 | 105 | DisplayFormatType::Default | DisplayFormatType::Verbose => { | ^^^^^^^^^^^^^^^^^ use of undeclared type `DisplayFormatType` error[E0412]: cannot find type `DisplayFormatType` in this scope --> datafusion/core/src/physical_plan/streaming.rs:101:12 | 101 | t: DisplayFormatType, | ^^^^^^^^^^^^^^^^^ not found in this scope | help: consider importing this enum | 20 + use crate::physical_plan::DisplayFormatType; | error[E0425]: cannot find function, tuple struct or tuple variant `ProjectSchemaDisplay` in this scope --> datafusion/core/src/physical_plan/streaming.rs:115:25 | 115 | ProjectSchemaDisplay(&self.projected_schema) | ^^^^^^^^^^^^^^^^^^^^ not found in this scope | help: consider importing this tuple struct | 20 + use crate::datasource::physical_plan::ProjectSchemaDisplay; | error[E0425]: cannot find function, tuple struct or tuple variant `OutputOrderingDisplay` in this scope --> datafusion/core/src/physical_plan/streaming.rs:129:33 | 129 | ... OutputOrderingDisplay(ordering) | ^^^^^^^^^^^^^^^^^^^^^ not found in this scope | help: consider importing this tuple struct | 20 + use crate::datasource::physical_plan::OutputOrderingDisplay; | ``` # What changes are included in this PR? Add necessary includes # Are these changes tested? CI # Are there any user-facing changes? <!-- If there are user-facing changes then we may require documentation to be updated before approving the PR. --> <!-- If there are any breaking changes to public APIs, please add the `api change` label. --> -- 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