-
Notifications
You must be signed in to change notification settings - Fork 784
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 some clippy errors after updating rust toolchain #3010
Conversation
|
||
collected_fields | ||
} | ||
|
||
fn _fields<'a>(&'a self, dt: &'a DataType) -> Vec<&Field> { | ||
fn _fields(dt: &DataType) -> Vec<&Field> { |
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.
error: parameter is only used in recursion
@@ -477,7 +477,6 @@ pub(crate) fn build_field<'a>( | |||
/// Get the IPC type of a data type | |||
pub(crate) fn get_fb_field_type<'a>( | |||
data_type: &DataType, | |||
is_nullable: bool, |
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.
error: parameter is only used in recursion
Benchmark runs are scheduled for baseline = 61cf6f7 and contender = 01ea8c7. 01ea8c7 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Which issue does this PR close?
Closes #3011.
Rationale for this change
What changes are included in this PR?
Are there any user-facing changes?