jayzhan211 commented on code in PR #14094: URL: https://github.com/apache/datafusion/pull/14094#discussion_r1912405518
########## datafusion/expr/src/udf.rs: ########## @@ -209,10 +214,15 @@ impl ScalarUDF { self.inner.invoke(args) } + #[allow(deprecated)] pub fn is_nullable(&self, args: &[Expr], schema: &dyn ExprSchema) -> bool { self.inner.is_nullable(args, schema) } + pub fn is_nullable_from_args_nullable(&self, args_nullables: &[bool]) -> bool { Review Comment: Remove `Expr` dependency -- 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