Skip to content

Commit 4d8b40e

Browse files
committed
fix clippy
1 parent 31f067d commit 4d8b40e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion-examples/examples/async_udf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,6 @@ impl AsyncScalarUDFImpl for AsyncEqual {
251251
_option: &ConfigOptions,
252252
) -> Result<ArrayRef> {
253253
let [arg1, arg2] = take_function_args(self.name(), &args.args)?;
254-
apply_cmp(&arg1, &arg2, eq)?.to_array(args.number_rows)
254+
apply_cmp(arg1, arg2, eq)?.to_array(args.number_rows)
255255
}
256256
}

0 commit comments

Comments
 (0)