-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Fix clippy errors for Rust 1.80 #11654
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Signed-off-by: Nick Cameron <nrc@ncameron.org>
|
Cherry picked #11467 and rebased it on current main. |
Newest version of clippy complains when list item continuation is not indented.
Reported by clippy
To be revisited
alamb
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ---- | ||
| 131072 | ||
|
|
||
| # FIXME(#TODO) fails with feature `force_hash_collisions` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the concern on #11467 was that this masks a real bug.
However, what I think we should do is file a PR to investigate / restore the tests which I will do so shortly
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| # FIXME(#TODO) fails with feature `force_hash_collisions` | |
| # FIXME(#TODO) fails with feature `force_hash_collisions` | |
| # https://github.com/apache/datafusion/issues/11660 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in #11661
| } | ||
|
|
||
| // FIXME(#TODO) test fails with feature `force_hash_collisions` | ||
| #[cfg(not(feature = "force_hash_collisions"))] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| #[cfg(not(feature = "force_hash_collisions"))] | |
| // https://github.com/apache/datafusion/issues/11658 | |
| #[cfg(not(feature = "force_hash_collisions"))] |
|
|
||
| /// Test where the left has 2 parts, the right with 1 part => 1 part | ||
| // FIXME(#TODO) test fails with feature `force_hash_collisions` | ||
| #[cfg(not(feature = "force_hash_collisions"))] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| #[cfg(not(feature = "force_hash_collisions"))] | |
| // https://github.com/apache/datafusion/issues/11658 | |
| #[cfg(not(feature = "force_hash_collisions"))] |
| } | ||
|
|
||
| /// Test where the left has 1 part, the right has 2 parts => 2 parts | ||
| // FIXME(#TODO) test fails with feature `force_hash_collisions` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| // FIXME(#TODO) test fails with feature `force_hash_collisions` | |
| // FIXME(#TODO) test fails with feature `force_hash_collisions` | |
| // https://github.com/apache/datafusion/issues/11658 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in in #11661
| 44 d 4 44 x 3 | ||
| NULL NULL NULL 55 w 3 | ||
|
|
||
| # FIXME(#TODO) fails with feature `force_hash_collisions` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| # FIXME(#TODO) fails with feature `force_hash_collisions` | |
| # FIXME(#TODO) fails with feature `force_hash_collisions` | |
| # https://github.com/apache/datafusion/issues/11659 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in #11661
Newest version of clippy complains when list item continuation is not indented.
Fixes #11651
Closes #11467