Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Commit

Permalink
Undo a piece of code changes
Browse files Browse the repository at this point in the history
  • Loading branch information
PHILO-HE committed Mar 28, 2022
1 parent c56ef48 commit c91cac0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ case class ColumnarCollapseCodegenStages(
.isInstanceOf[ColumnarSortMergeJoinExec]) =>
// we don't support any ColumnarSortMergeJoin whose both children are ColumnarSortMergeJoin
j.withNewChildren(j.children.map(c => {
if (c.isInstanceOf[ColumnarSortMergeJoinExec]) {
if (c.equals(j.buildPlan)) {
new ColumnarInputAdapter(insertWholeStageCodegen(c))
} else {
insertInputAdapter(c)
Expand Down

0 comments on commit c91cac0

Please sign in to comment.