findepi commented on code in PR #17078: URL: https://github.com/apache/datafusion/pull/17078#discussion_r2263292677
########## datafusion/physical-expr/src/scalar_function.rs: ########## @@ -175,42 +173,47 @@ impl fmt::Display for ScalarFunctionExpr { } } -impl DynEq for ScalarFunctionExpr { - fn dyn_eq(&self, other: &dyn Any) -> bool { - other.downcast_ref::<Self>().is_some_and(|o| { - self.fun.eq(&o.fun) - && self.name.eq(&o.name) - && self.args.eq(&o.args) - && self.return_field.eq(&o.return_field) - && self - .config_options - .entries() - .iter() - .sorted_by(|&l, &r| l.key.cmp(&r.key)) - .zip( - o.config_options - .entries() - .iter() - .sorted_by(|&l, &r| l.key.cmp(&r.key)), - ) - .filter(|(l, r)| l.ne(r)) - .count() - == 0 - }) +impl PartialEq for ScalarFunctionExpr { + fn eq(&self, o: &Self) -> bool { + let Self { + fun, + name, + args, + return_field, + config_options, + } = self; + fun.eq(&o.fun) + && name.eq(&o.name) + && args.eq(&o.args) + && return_field.eq(&o.return_field) + && sorted_config_entries(config_options) Review Comment: Added short-circuiting to this PR, because why not. I wish we could make Hash faster as well. Maybe the `ConfigOptions` object should be compared by address? That would be a change in eq semantics, so let's run it as a separate PR. -- 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