Skip to content

Commit

Permalink
Clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gokselk committed Dec 19, 2024
1 parent b87b5fb commit 5d12cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/expr/src/udf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ pub trait ScalarUDFImpl: Debug + Send + Sync {
.skip(1)
.all(|input| &input.sort_properties == first_order)
{
Ok(first_order.clone())
Ok(*first_order)
} else {
Ok(SortProperties::Unordered)
}
Expand Down

0 comments on commit 5d12cfd

Please sign in to comment.