jayzhan211 commented on PR #14289:
URL: https://github.com/apache/datafusion/pull/14289#issuecomment-2620376458

   ```rust
   /// How a function handles Null input.
   enum NullHandling {
       /// Pass Null inputs into the function implementation.
       PassThrough,
       /// Any Null input causes the function to return Null.
       Propogate,
   }
   ```
   
   This looks great. `NullHandling::PassThrough` could be the default, I don't 
have strong opinion on the default setting


-- 
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]

Reply via email to