OrcLazyInt int3 = (OrcLazyInt) row.getFieldValue(9);
if (int3.nextIsNull()) {
assertNull(expected.int3);
} else {
assertEquals(expected.int3.intValue(),
((IntWritable) int3.materialize()).get());
}
OrcLazyLong long3 = (OrcLazyLong) row.getFieldValue(10);
if (long3.nextIsNull()) {
assertNull(expected.long3);