saadtajwar commented on code in PR #23030:
URL: https://github.com/apache/datafusion/pull/23030#discussion_r3439670333


##########
datafusion/proto-models/proto/datafusion.proto:
##########
@@ -148,9 +148,19 @@ message RepartitionNode {
   oneof partition_method {
     uint64 round_robin = 2;
     HashRepartition hash = 3;
+    RangeRepartition range = 4;
   }
 }
 
+message RangeSplitPoint {
+  repeated datafusion_common.ScalarValue value = 1;
+}
+
+message RangeRepartition {
+  repeated SortExprNode expr = 1;

Review Comment:
   I noticed the physical plan field called this `sort_expr`, I could change 
this to match if needed?



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to