assertEquals(expected.short2.shortValue(),
((ShortWritable) short2.materialize()).get());
}
OrcLazyInt int2 = (OrcLazyInt) row.getFieldValue(6);
if (int2.nextIsNull()) {
assertNull(expected.int2);
} else {
assertEquals(expected.int2.intValue(),
((IntWritable) int2.materialize()).get());
}