long approximateOffset = table.getApproximateOffsetOf(entry.getKey());
assertTrue(approximateOffset >= lastApproximateOffset);
lastApproximateOffset = approximateOffset;
}
Slice endKey = Slices.wrappedBuffer(new byte[] {(byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF});
seekingIterator.seek(endKey);
BlockHelper.assertSequence(seekingIterator, Collections.<BlockEntry>emptyList());
long approximateOffset = table.getApproximateOffsetOf(endKey);
assertTrue(approximateOffset >= lastApproximateOffset);