gene-bordegaray commented on code in PR #23184:
URL: https://github.com/apache/datafusion/pull/23184#discussion_r3539127980


##########
datafusion/physical-plan/src/aggregates/mod.rs:
##########
@@ -1796,6 +1797,19 @@ impl ExecutionPlan for AggregateExec {
         }
     }
 
+    fn required_input_distributions(&self) -> RequiredInputDistributions {
+        let requirements =
+            
RequiredInputDistributions::new(self.required_input_distribution());
+        match &self.mode {
+            AggregateMode::FinalPartitioned | AggregateMode::SinglePartitioned
+                if !self.group_by.has_grouping_set() =>
+            {
+                requirements.with_range_key_partitioning(0)

Review Comment:
   yes the naming was poor I updated the name to read as allow range 
satisfaction



-- 
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