You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems to be because of changes in rust version 1.69.0-nightly (c18a5e8a5 2023-01-25)
error: variables can be used directly in the `format!` string
--> datafusion/common/src/config.rs:343:48
|
343 | _ => Err(DataFusionError::Internal(format!(
| ________________________________________________^
344 | | "Config value \"{}\" not found on ConfigOptions",
345 | | key
346 | | ))),
| |_____________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `-D clippy::uninlined-format-args` implied by `-D warnings`
error: variables can be used directly in the `format!` string
--> datafusion/common/src/error.rs:290:17
|
290 | write!(f, "Avro error: {}", desc)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
**To Reproduce**
Steps to reproduce the behavior:
**Expected behavior**
A clear and concise description of what you expected to happen.
**Additional context**
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
andygrove
changed the title
Clippy failures in master branch and in PRs
Clippy failures in master branch and in PRs (due to new nightly Rust)
Jan 26, 2023
Describe the bug
This started happening in master and in PRs.
This seems to be because of changes in
rust version 1.69.0-nightly (c18a5e8a5 2023-01-25)
The text was updated successfully, but these errors were encountered: