Skip to content

Commit 927745e

Browse files
Update sql/core/src/main/scala/org/apache/spark/sql/execution/exchange/EnsureRequirements.scala
Co-authored-by: Wenchen Fan <[email protected]>
1 parent a8ebac0 commit 927745e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/core/src/main/scala/org/apache/spark/sql/execution/exchange/EnsureRequirements.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ case class EnsureRequirements(
166166
// 1. There are exactly two children (e.g., join). Note that Spark doesn't support
167167
// multi-way join at the moment, so this check should be sufficient.
168168
// 2. All children are of the compatible key group partitioning or
169-
// compatible shuffle partition id pass through partitioning
169+
// compatible shuffle partition id pass through partitioning
170170
// If both are true, skip shuffle.
171171
val areChildrenCompatible = parent.isDefined &&
172172
children.length == 2 && childrenIndexes.length == 2 && {

0 commit comments

Comments
 (0)