Skip to content

Commit

Permalink
Fix compile error likely due to mismatched ordering of backports
Browse files Browse the repository at this point in the history
  • Loading branch information
craigtaverner committed Nov 20, 2024
1 parent 7d0e9da commit b9c4660
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,8 @@ private PhysicalOperation planLookupJoin(LookupJoinExec join, LocalExecutionPlan
matchFields.get(0).type(),
localSourceExec.index().name(),
join.matchFields().get(0).name(),
join.addedFields().stream().map(f -> (NamedExpression) f).toList()
join.addedFields().stream().map(f -> (NamedExpression) f).toList(),
join.source()
),
layout
);
Expand Down

0 comments on commit b9c4660

Please sign in to comment.