}
}
@Override
public FileSKVIterator openReader(String file, boolean seekToBeginning, FileSystem fs, Configuration conf, AccumuloConfiguration acuconf) throws IOException {
FileSKVIterator iter = new FileCFSkippingIterator(new RangeIterator(MapFileUtil.openMapFile(acuconf, fs, file, conf)));
if (seekToBeginning)
iter.seek(new Range(new Key(), null), new ArrayList<ByteSequence>(), false);
return iter;
}