Skip to content

Commit

Permalink
fixup! clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
reswqa committed May 16, 2024
1 parent 7a47a51 commit 4b64da4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/sql/src/unparser/expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ impl Unparser<'_> {
})
}
Expr::ScalarVariable(_, ids) => {
if ids.len() == 0 {
if ids.is_empty() {
return internal_err!("Not a valid ScalarVariable");
}

Expand Down

0 comments on commit 4b64da4

Please sign in to comment.