eejbyfeldt commented on code in PR #12281:
URL: https://github.com/apache/datafusion/pull/12281#discussion_r1747092400


##########
datafusion/physical-expr/src/equivalence/projection.rs:
##########
@@ -82,6 +82,11 @@ impl ProjectionMapping {
             .map(|map| Self { map })
     }
 
+    pub fn from_indices(indices: &[usize], schema: &SchemaRef) -> Result<Self> 
{

Review Comment:
   Fixed in 
https://github.com/apache/datafusion/pull/12281/commits/0c05fb904f9d2a70f9c656a105f194584189c017



##########
datafusion/core/src/physical_optimizer/projection_pushdown.rs:
##########
@@ -535,11 +538,27 @@ fn try_pushdown_through_union(
     Ok(Some(Arc::new(UnionExec::new(new_children))))
 }
 
+trait EmbededProjection: ExecutionPlan + Sized {

Review Comment:
   Fixed in 
https://github.com/apache/datafusion/pull/12281/commits/0c05fb904f9d2a70f9c656a105f194584189c017



##########
datafusion/physical-expr/src/partitioning.rs:
##########
@@ -191,6 +194,28 @@ impl Partitioning {
             _ => false,
         }
     }
+
+    pub fn project(

Review Comment:
   Fixed in 
https://github.com/apache/datafusion/pull/12281/commits/0c05fb904f9d2a70f9c656a105f194584189c017



-- 
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: github-unsubscr...@datafusion.apache.org

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


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to