andygrove commented on a change in pull request #8709:
URL: https://github.com/apache/arrow/pull/8709#discussion_r526856756



##########
File path: rust/datafusion/src/physical_plan/mod.rs
##########
@@ -89,6 +89,8 @@ pub trait ExecutionPlan: Debug + Send + Sync {
 pub enum Partitioning {
     /// Unknown partitioning scheme
     UnknownPartitioning(usize),
+    /// parts hashed by columns and `N` partitions
+    HashPartitioning(Vec<String>, usize),

Review comment:
       It makes sense for us to add a `HashPartitioning` variant here, but this 
isn't required for implementing the hash join operator since we aren't changing 
partitioning.




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

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to