if(LOG.isDebugEnabled()) {
LOG.debug("addOnlineHandledHKey: {}/{} -> {}", new Object[] { onlineSession.id, tableID, hKey });
}
TransactionState txn = txnService.getTransaction(session);
DirectorySubspace tableDMLDir = getOnlineTableDMLDir(txn, onlineSession.id, tableID);
byte[] startKey = tableDMLDir.pack();
byte[] endKey = ByteArrayUtil.strinc(startKey);
if(hKey != null) {
startKey = ByteArrayUtil.join(tableDMLDir.pack(), Arrays.copyOf(hKey.getEncodedBytes(), hKey.getEncodedSize()));
}
final Iterator<KeyValue> iterator = txn.getRangeIterator(startKey, endKey);