chenkovsky commented on code in PR #15667: URL: https://github.com/apache/datafusion/pull/15667#discussion_r2072517249
########## datafusion/functions-aggregate/src/min_max.rs: ########## @@ -619,6 +625,45 @@ fn min_batch(values: &ArrayRef) -> Result<ScalarValue> { }) } +fn min_max_batch_struct(array: &ArrayRef, ordering: Ordering) -> Result<ScalarValue> { + if array.len() == array.null_count() { + return ScalarValue::try_from(array.data_type()); + } + let mut extreme = ScalarValue::try_from_array(array, 0)?; + for i in 1..array.len() { + let current = ScalarValue::try_from_array(array, i)?; + if current.is_null() { + continue; + } + if extreme.is_null() { + extreme = current; + continue; + } + if let Some(cmp) = extreme.partial_cmp(¤t) { + if cmp == ordering { + extreme = current; + } + } + } + // use deep_clone to free array reference + Ok(extreme.deep_clone()) +} + +macro_rules! min_max_struct { + ($VALUE:expr, $DELTA:expr, $OP:ident) => {{ + if $VALUE.is_null() { + $DELTA.clone() + } else if $DELTA.is_null() { + $VALUE.clone() + } else { + match $VALUE.partial_cmp(&$DELTA) { + Some(choose_min_max!($OP)) => $DELTA.clone(), Review Comment: the $VALUE and $DELTA are all deep cloned. so there's no need to clone again. -- 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