berkaysynnada commented on code in PR #14271: URL: https://github.com/apache/datafusion/pull/14271#discussion_r1932018364
########## datafusion/expr/src/udaf.rs: ########## @@ -39,6 +39,26 @@ use crate::utils::AggregateOrderSensitivity; use crate::{Accumulator, Expr}; use crate::{Documentation, Signature}; +/// Status of an Aggregate Expression's Monotonicity +#[derive(Debug, Clone)] +pub enum AggregateExprMonotonicity { Review Comment: The nulls property in SortProperties doesn't hold much significance here, as it can be inferred from the monotonicity type. If the function exhibits an increasing order as the set grows, the null values will naturally appear at the end. Conversely, if the function is decreasing, the null values will appear at the beginning. -- 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