-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Fix clippy errors for Rust 1.80 #11654
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
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.
@@ -251,25 +251,26 @@ SELECT COUNT(*) FROM timestamp_with_tz; | |||
---- | |||
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
@@ -1930,6 +1931,8 @@ mod tests { | |||
Ok(()) | |||
} | |||
|
|||
// 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"))] |
@@ -1985,6 +1988,8 @@ mod tests { | |||
} | |||
|
|||
/// 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"))] |
@@ -2097,6 +2102,8 @@ mod tests { | |||
} | |||
|
|||
/// 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
@@ -238,16 +238,17 @@ SELECT * FROM t1 FULL JOIN t2 ON t1_id = t2_id | |||
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