Skip to content

Commit

Permalink
remove the println
Browse files Browse the repository at this point in the history
  • Loading branch information
LantaoJin committed Jul 7, 2020
1 parent 479d56b commit 947927a
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,7 @@ case class OptimizeSkewedJoin(conf: SQLConf) extends Rule[SparkPlan] {
// ..
// Shuffle
val optimizePlan = optimizeSkewJoin(plan)
val ensuredPlan = ensureRequirements.apply(optimizePlan)
println(ensuredPlan)
val numShuffles = ensuredPlan.collect {
val numShuffles = ensureRequirements.apply(optimizePlan).collect {
case e: ShuffleExchangeExec => e
}.length

Expand Down

0 comments on commit 947927a

Please sign in to comment.