viirya commented on code in PR #9236:
URL: https://github.com/apache/arrow-datafusion/pull/9236#discussion_r1515255687


##########
datafusion/physical-plan/src/joins/hash_join.rs:
##########
@@ -290,6 +294,8 @@ pub struct HashJoinExec {
     pub mode: PartitionMode,
     /// Execution metrics
     metrics: ExecutionPlanMetricsSet,
+    /// The indices of the columns in the output schema
+    pub projection: Option<Vec<usize>>,

Review Comment:
   ```suggestion
       /// The projection indices of the columns for the output schema of join
       pub projection: Option<Vec<usize>>,
   ```



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

Reply via email to