neilconway opened a new pull request, #21061: URL: https://github.com/apache/datafusion/pull/21061
## Which issue does this PR close? N/A ## Rationale for this change `clippy` doesn't warn about `use` statements that re-import an item that is already available via a glob import (`use super::*`), but in many cases the `use` statement is redundant and can be safely removed. In particular, there was a lot of test code that did both `use super::*` and also imported items that were imported by the module under test; the test-specific import can be safely removed. ## What changes are included in this PR? * Mechanical removal of duplicate imports between test code and code under test ## Are these changes tested? Yes, via `cargo check` and `cargo clippy` ## Are there any user-facing changes? No. -- 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]
