zhuqi-lucas commented on code in PR #15194: URL: https://github.com/apache/datafusion/pull/15194#discussion_r1992967843
########## datafusion/physical-plan/src/coalesce_batches.rs: ########## @@ -123,8 +123,11 @@ impl DisplayAs for CoalesceBatchesExec { Ok(()) } DisplayFormatType::TreeRender => { - // TODO: collect info - write!(f, "") + writeln!(f, "target_batch_size={}", self.target_batch_size)?; + if let Some(fetch) = self.fetch { + write!(f, "limit={fetch}")?; Review Comment: Do we have a explain tree example in slt which with limit? I only see target_batch_size in the slt testing. -- 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