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
bash dev/rust_lint.sh gives following linter error.
error: field `0` is never read
--> datafusion/optimizer/src/simplify_expressions/expr_simplifier.rs:413:26
|
413 | SimplifyRuntimeError(DataFusionError, Expr),
| -------------------- ^^^^^^^^^^^^^^^
| |
| field in this variant
|
= note: `-D dead-code` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(dead_code)]`
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
413 | SimplifyRuntimeError((), Expr),
which causes CI to fail.
To Reproduce
No response
Expected behavior
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
bash dev/rust_lint.sh
gives following linter error.which causes
CI
to fail.To Reproduce
No response
Expected behavior
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: