Standing-Man commented on code in PR #15085: URL: https://github.com/apache/datafusion/pull/15085#discussion_r1986479692
########## datafusion/physical-plan/src/streaming.rs: ########## @@ -209,8 +209,27 @@ impl DisplayAs for StreamingTableExec { Ok(()) } DisplayFormatType::TreeRender => { - // TODO: collect info - write!(f, "") + write!( Review Comment: So we only need to show `infinite` and `limit` information there? ``` pub struct StreamingTableExec { partitions: Vec<Arc<dyn PartitionStream>>, projection: Option<Arc<[usize]>>, projected_schema: SchemaRef, projected_output_ordering: Vec<LexOrdering>, infinite: bool, limit: Option<usize>, cache: PlanProperties, metrics: ExecutionPlanMetricsSet, } ``` -- 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