Skip to content

Commit

Permalink
Fix line length in HashJoin
Browse files Browse the repository at this point in the history
  • Loading branch information
rxin committed Oct 8, 2014
1 parent a39be8c commit a070d44
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ trait HashJoin {
@transient protected lazy val streamSideKeyGenerator =
newMutableProjection(streamedKeys, streamedPlan.output)

protected def joinIterators(buildIter: Iterator[Row], streamIter: Iterator[Row]): Iterator[Row] = {
protected def joinIterators(buildIter: Iterator[Row], streamIter: Iterator[Row]): Iterator[Row] =
{
// TODO: Use Spark's HashMap implementation.

val hashTable = new java.util.HashMap[Row, CompactBuffer[Row]]()
Expand Down

0 comments on commit a070d44

Please sign in to comment.