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


##########
datafusion/physical-plan/src/execution_plan.rs:
##########
@@ -164,6 +167,12 @@ pub trait ExecutionPlan: Any + Debug + DisplayAs + Send + 
Sync {
         check_default_invariants(self, check)
     }
 
+    /// Specifies data distribution requirements for all children, including
+    /// non-default satisfaction policies or cross-child relationships.
+    fn required_input_distributions(&self) -> RequiredInputDistributions {
+        RequiredInputDistributions::new(self.required_input_distribution())
+    }
+
     /// Specifies the data distribution requirements for all the

Review Comment:
   We would either deprecate the old one or just flat out change the existing. 
Didn't know if we wanted the churn



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