Skip to content

Commit

Permalink
Update datafusion/physical-plan/src/projection.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Lamb <[email protected]>
  • Loading branch information
gruuya and alamb authored Feb 2, 2024
1 parent 71bf589 commit 4209e68
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion datafusion/physical-plan/src/projection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ pub struct ProjectionExec {
input: Arc<dyn ExecutionPlan>,
/// The output ordering
output_ordering: Option<Vec<PhysicalSortExpr>>,
/// The output equivalence properties
/// The output equivalence properties. Cached here as computing them
/// can be expensive, see <https://github.com/apache/arrow-datafusion/pull/9097>
equivalence_properties: EquivalenceProperties,
/// The mapping used to normalize expressions like Partitioning and
/// PhysicalSortExpr that maps input to output
Expand Down

0 comments on commit 4209e68

Please sign in to comment.