alamb commented on code in PR #6494: URL: https://github.com/apache/arrow-datafusion/pull/6494#discussion_r1210832044
########## datafusion/core/tests/sql/explain_analyze.rs: ########## @@ -687,13 +687,31 @@ async fn csv_explain_analyze() { // Only test basic plumbing and try to avoid having to change too // many things. explain_analyze_baseline_metrics covers the values // in greater depth - let needle = "CoalescePartitionsExec, metrics=[output_rows=5, elapsed_compute="; + let needle = "AggregateExec: mode=FinalPartitioned, gby=[c1@0 as c1], aggr=[COUNT(UInt8(1))], metrics=[output_rows=5"; assert_contains!(&formatted, needle); let verbose_needle = "Output Rows"; assert_not_contains!(formatted, verbose_needle); } +#[tokio::test] +#[cfg_attr(tarpaulin, ignore)] +async fn csv_explain_analyze_order_by() { + let ctx = SessionContext::new(); + register_aggregate_csv_by_sql(&ctx).await; Review Comment: here is the new test -- 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...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org