assertEquals(expected.short3.shortValue(),
((ShortWritable) short3.materialize()).get());
}
OrcLazyInt int3 = (OrcLazyInt) row.getFieldValue(9);
if (int3.nextIsNull()) {
assertNull(expected.int3);
} else {
assertEquals(expected.int3.intValue(),
((IntWritable) int3.materialize()).get());
}