final byte [] arbitraryStopRow = Bytes.toBytes("c");
byte [] actualStopRow = null;
byte [][] columns = {COLFAMILY_NAME1};
scanner = region.getScanner(columns,
arbitraryStartRow, HConstants.LATEST_TIMESTAMP,
new WhileMatchRowFilter(new StopRowFilter(arbitraryStopRow)));
HStoreKey key = new HStoreKey();
TreeMap<byte [], Cell> value =
new TreeMap<byte [], Cell>(Bytes.BYTES_COMPARATOR);
while (scanner.next(key, value)) {
if (actualStartRow == null) {