if (r == null) return null;
return UTF8.String(r);
}
public byte[] getRelation(final String name, final byte[] key) throws IOException, RowSpaceExceededException {
final Index table = getRelation(name);
if (table == null) return null;
final Row.Entry entry = table.get(key, false);
if (entry == null) return null;
return entry.getColBytes(3, true);
}