timsaucer commented on code in PR #15646:
URL: https://github.com/apache/datafusion/pull/15646#discussion_r2052893897


##########
datafusion/expr/src/udf.rs:
##########
@@ -719,6 +682,12 @@ pub trait ScalarUDFImpl: Debug + Send + Sync {
     fn documentation(&self) -> Option<&Documentation> {
         None
     }
+
+    /// This describes the output field associated with this UDF.
+    /// Input field is handled through `ScalarFunctionArgs`
+    fn output_field(&self, _input_schema: &Schema) -> Option<Field> {
+        None

Review Comment:
   Yes! I took your suggestion and actually removed this function entirely.



-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to