getChan commented on code in PR #15606: URL: https://github.com/apache/datafusion/pull/15606#discussion_r2030693362
########## datafusion/physical-plan/src/repartition/mod.rs: ########## @@ -510,7 +510,7 @@ impl DisplayAs for RepartitionExec { writeln!(f, "partitioning_scheme={}", self.partitioning(),)?; writeln!( f, - "output_partition_count={}", + "input_partition_count={}", self.input.output_partitioning().partition_count() Review Comment: thanks for review. The output partition number is already included in the `partitioning_scheme`, so it is displayed. ex) ``` 13)┌─────────────┴─────────────┐ 14)│ RepartitionExec │ 15)│ -------------------- │ 16)│ input_partition_count: │ 17)│ 1 │ 18)│ │ 19)│ partitioning_scheme: │ 20)│ RoundRobinBatch(4) │ 21)└─────────────┬─────────────┘ ``` -- 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