gabotechs commented on code in PR #23660:
URL: https://github.com/apache/datafusion/pull/23660#discussion_r3688641602
##########
datafusion/sqllogictest/src/test_context.rs:
##########
@@ -712,3 +718,87 @@ fn register_async_abs_udf(ctx: &SessionContext) {
let udf = AsyncScalarUDF::new(Arc::new(async_abs));
ctx.register_udf(udf.into_scalar_udf());
}
+
+fn register_multi_arg_lambda_udf(ctx: &SessionContext) {
+ #[derive(Debug, PartialEq, Eq, Hash)]
Review Comment:
I'd recommend moving this comment to the top of the function definition as
proper doc comments. That way, while other people are navigating the code,
their IDE will display the doc-comment just on hover of the function definition.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]