We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31f067d commit 4d8b40eCopy full SHA for 4d8b40e
datafusion-examples/examples/async_udf.rs
@@ -251,6 +251,6 @@ impl AsyncScalarUDFImpl for AsyncEqual {
251
_option: &ConfigOptions,
252
) -> Result<ArrayRef> {
253
let [arg1, arg2] = take_function_args(self.name(), &args.args)?;
254
- apply_cmp(&arg1, &arg2, eq)?.to_array(args.number_rows)
+ apply_cmp(arg1, arg2, eq)?.to_array(args.number_rows)
255
}
256
0 commit comments