Skip to content

Commit

Permalink
remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
Davies Liu committed Jul 17, 2015
1 parent bea4a50 commit 95d0762
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,15 +184,12 @@ private[joins] final class UnsafeHashedRelation(
override def writeExternal(out: ObjectOutput): Unit = {
writeBytes(out, SparkSqlSerializer.serialize(keyTypes))
val bytes = SparkSqlSerializer.serialize(hashTable)
println(s"before write ${hashTable}")
println(s"write bytes ${bytes.toString}")
writeBytes(out, bytes)
}

override def readExternal(in: ObjectInput): Unit = {
keyTypes = SparkSqlSerializer.deserialize(readBytes(in))
hashTable = SparkSqlSerializer.deserialize(readBytes(in))
println(s"loaded ${hashTable}")
}
}

Expand Down

0 comments on commit 95d0762

Please sign in to comment.