} else {
assertEquals(expected.byte1.byteValue(), byte1.get());
}
OrcLazyShort lazyShort1 = (OrcLazyShort) row.getFieldValue(2);
ShortWritable short1 = (ShortWritable) lazyShort1.materialize();
if (short1 == null) {
assertNull(expected.short1);
} else {
assertEquals(expected.short1.shortValue(), short1.get());
}
OrcLazyInt lazyInt1 = (OrcLazyInt) row.getFieldValue(3);
IntWritable int1 = (IntWritable) lazyInt1.materialize();
if (int1 == null) {
assertNull(expected.int1);
} else {
assertEquals(expected.int1.intValue(), int1.get());
}
OrcLazyLong lazyLong1 = (OrcLazyLong) row.getFieldValue(4);
LongWritable long1 = (LongWritable) lazyLong1.materialize();
if (long1 == null) {
assertNull(expected.long1);
} else {
assertEquals(expected.long1.longValue(), long1.get());
}
OrcLazyShort lazyShort2 = (OrcLazyShort) row.getFieldValue(5);
ShortWritable short2 = (ShortWritable) lazyShort2.materialize();
if (short2 == null) {
assertNull(expected.short2);
} else {
assertEquals(expected.short2.shortValue(), short2.get());
}
OrcLazyInt lazyInt2 = (OrcLazyInt) row.getFieldValue(6);
IntWritable int2 = (IntWritable) lazyInt2.materialize();
if (int2 == null) {
assertNull(expected.int2);
} else {
assertEquals(expected.int2.intValue(), int2.get());
}
OrcLazyLong lazyLong2 = (OrcLazyLong) row.getFieldValue(7);
LongWritable long2 = (LongWritable) lazyLong2.materialize();
if (long2 == null) {
assertNull(expected.long2);
} else {
assertEquals(expected.long2.longValue(), long2.get());
}
OrcLazyShort lazyShort3 = (OrcLazyShort) row.getFieldValue(8);
ShortWritable short3 = (ShortWritable) lazyShort3.materialize();
if (short3 == null) {
assertNull(expected.short3);
} else {
assertEquals(expected.short3.shortValue(), short3.get());
}
OrcLazyInt lazyInt3 = (OrcLazyInt) row.getFieldValue(9);
IntWritable int3 = (IntWritable) lazyInt3.materialize();
if (int3 == null) {