Github user gatorsmile commented on a diff in the pull request:

    https://github.com/apache/spark/pull/18861#discussion_r131570879
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/basicLogicalOperators.scala
 ---
    @@ -753,6 +753,16 @@ case class Repartition(numPartitions: Int, shuffle: 
Boolean, child: LogicalPlan)
     }
     
     /**
    + * Returns a new RDD that has at most `numPartitions` partitions. This 
behavior can be modified by
    + * supplying a `PartitionCoalescer` to control the behavior of the 
partitioning.
    + */
    +case class PartitionCoalesce(numPartitions: Int, coalescer: 
PartitionCoalescer, child: LogicalPlan)
    +  extends UnaryNode {
    --- End diff --
    
    Adding new logical nodes also needs the updates in multiple different 
components. (e.g., Optimizer). 
    
    Is that possible to reuse the existing node `Repartition`?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to