Skip to content

Commit

Permalink
SelectColumnLayer to only allow cross-column parallelization if its S…
Browse files Browse the repository at this point in the history
…electColumn is stateless
  • Loading branch information
rcaudy committed Dec 10, 2022
1 parent ce62f0f commit ff5c602
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,6 @@ public LogOutput append(LogOutput logOutput) {

@Override
public boolean allowCrossColumnParallelization() {
return inner.allowCrossColumnParallelization();
return selectColumn.isStateless() && inner.allowCrossColumnParallelization();
}
}

0 comments on commit ff5c602

Please sign in to comment.