Reader reader = OrcFile.createReader(fs, testFilePath, conf);
RecordReader rows = reader.rows(null);
OrcLazyStruct lazyRow = null;
OrcStruct row = null;
lazyRow = (OrcLazyStruct) rows.next(lazyRow);
row = (OrcStruct) lazyRow.materialize();
assertEquals(0, ((IntWritable) ((OrcLazyInt) row.getFieldValue(0)).materialize()).get());
// Seek to row 98 which is almost at the end of a stripe, this way it stays in the current
// stripe, and if the row is not updated correctly will read off the end of a stream.
rows.seekToRow(98);
for (int i = 98; i < 200; i++) {