saadtajwar commented on code in PR #23030:
URL: https://github.com/apache/datafusion/pull/23030#discussion_r3449050476
##########
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;
+ repeated RangeSplitPoint split_points = 2;
Review Comment:
Good catch - changed!
--
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]