We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8ebac0 commit 927745eCopy full SHA for 927745e
sql/core/src/main/scala/org/apache/spark/sql/execution/exchange/EnsureRequirements.scala
@@ -166,7 +166,7 @@ case class EnsureRequirements(
166
// 1. There are exactly two children (e.g., join). Note that Spark doesn't support
167
// multi-way join at the moment, so this check should be sufficient.
168
// 2. All children are of the compatible key group partitioning or
169
- // compatible shuffle partition id pass through partitioning
+ // compatible shuffle partition id pass through partitioning
170
// If both are true, skip shuffle.
171
val areChildrenCompatible = parent.isDefined &&
172
children.length == 2 && childrenIndexes.length == 2 && {
0 commit comments