-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Enable used_underscore_binding
clippy lint
#14649
Comments
take |
Hi, @findepi datafusion/datafusion/optimizer/src/push_down_limit.rs Lines 51 to 55 in c176533
There are few cases like above where replacing Do you have any suggestions about this issue? Thank you :) |
We could move logic of #[allow(clippy::used_underscore_binding)] // for recursive call only
self.rewrite(new_filter, _config) |
can you assign this issue #14649 |
Hi @Ramjee194, I assigned myself with writing "take" (you can also do this for other issues, too!) and already working on this issue. :) |
_var
is a convention to indicate unused variables or unused struct members.As such, these members should indeed not be used.
used_underscore_binding
clippy lint seems to be enforcing that. let's enable it in the workspacedatafusion/Cargo.toml
Line 185 in 7fde24a
The text was updated successfully, but these errors were encountered: