private void verifySingle(SSTableReader sstable, byte[] bytes, String key) throws IOException
{
BufferedRandomAccessFile file = new BufferedRandomAccessFile(sstable.path, "r");
file.seek(sstable.getPosition(sstable.partitioner.decorateKey(key)).position);
assert key.equals(file.readUTF());
int size = file.readInt();
byte[] bytes2 = new byte[size];
file.readFully(bytes2);
assert Arrays.equals(bytes2, bytes);
}