Skip to content

Commit

Permalink
fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
cloud-fan committed Jan 19, 2018
1 parent ab4a625 commit 37c82e6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -346,11 +346,11 @@ class ArrowColumnVectorSuite extends SparkFunSuite {
assert(columnVector.dataType === schema)
assert(columnVector.numNulls === 0)

val row0 = columnVector.getStruct(0, 2)
val row0 = columnVector.getStruct(0)
assert(row0.getInt(0) === 1)
assert(row0.getLong(1) === 1L)

val row1 = columnVector.getStruct(1, 2)
val row1 = columnVector.getStruct(1)
assert(row1.getInt(0) === 2)
assert(row1.isNullAt(1))

Expand Down

0 comments on commit 37c82e6

Please sign in to comment.