return false;
}
record =(reader.next(record));
if (converter == null){
//we assume that all the next records will have the same avroSchema
converter = new AvroRecordToTupleConverter(record.getSchema(), conf);
}
tuple = converter.toTuple(record, tuple);
return true;
}