File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
sql/core/src/main/scala/org/apache/spark/sql Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ import scala.collection.JavaConversions._
2525import scala .language .implicitConversions
2626import scala .reflect .ClassTag
2727import scala .reflect .runtime .universe .TypeTag
28- import scala .util .Random
2928import scala .util .control .NonFatal
3029
3130import com .fasterxml .jackson .core .JsonFactory
@@ -457,7 +456,7 @@ class DataFrame private[sql](
457456 return plan
458457 }
459458
460- // If neither sides have no output set intersection, return the plan.
459+ // If left/right have no output set intersection, return the plan.
461460 val lanalyzed = this .logicalPlan.queryExecution.analyzed
462461 val ranalyzed = right.logicalPlan.queryExecution.analyzed
463462 if (lanalyzed.outputSet.intersect(ranalyzed.outputSet).isEmpty) {
You can’t perform that action at this time.
0 commit comments