jayzhan211 commented on code in PR #14232: URL: https://github.com/apache/datafusion/pull/14232#discussion_r1929378639
########## datafusion/functions-aggregate/src/first_last.rs: ########## @@ -701,9 +713,98 @@ fn convert_to_sort_cols(arrs: &[ArrayRef], sort_exprs: &LexOrdering) -> Vec<Sort #[cfg(test)] mod tests { use arrow::array::Int64Array; + use arrow_schema::Schema; + use compute::SortOptions; + use datafusion_physical_expr::{expressions::col, PhysicalSortExpr}; use super::*; + #[test] + fn test_last_value_with_order_bys() -> Result<()> { + // TODO: Move this kind of test to slt, we don't have a nice way to define the batch size for each `update_batch` Review Comment: Memory doesn't work https://github.com/apache/datafusion/issues/12905#issuecomment-2524060879, not sure about file 🤔 -- 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