alamb commented on code in PR #15001: URL: https://github.com/apache/datafusion/pull/15001#discussion_r1982169645
########## datafusion/physical-plan/src/filter.rs: ########## @@ -330,8 +330,7 @@ impl DisplayAs for FilterExec { write!(f, "FilterExec: {}{}", self.predicate, display_projections) } DisplayFormatType::TreeRender => { - // TODO: collect info - write!(f, "") + write!(f, "predicate={}", self.predicate) Review Comment: For anyone else following along, this is what it takes to implement the `tree` format for `FilterExec` The rest of the PR is comments and tests -- 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