public boolean contains(final ByteSequence bsrow) {
if (bsrow == null) {
throw new IllegalArgumentException("Passing null to contains is ambiguous, could be in first or last extent of table");
}
BinaryComparable row = new BinaryComparable() {
@Override
public int getLength() {
return bsrow.length();
}