Skip to content

Commit

Permalink
JoinedRow.
Browse files Browse the repository at this point in the history
  • Loading branch information
rxin committed Jul 27, 2015
1 parent 11f80a3 commit 9989064
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ class JoinedRow extends InternalRow {
if (i < row1.numFields) row1.getBinary(i) else row2.getBinary(i - row1.numFields)
}

override def get(i: Int): Any =
override def get(i: Int, dataType: DataType): Any =
if (i < row1.numFields) row1.get(i) else row2.get(i - row1.numFields)

override def isNullAt(i: Int): Boolean =
Expand Down

0 comments on commit 9989064

Please sign in to comment.