StoreScanner not being closed?
------------------------------
Key: HBASE-3395
URL: https://issues.apache.org/jira/browse/HBASE-3395
Project: HBase
Issue Type: Bug
Affects Versions: 0.90.0
Reporter: Prakash Khemani
Assignee: Jonathan Gray
In StoreScanner::next(List<KeyValue> outResult, int limit)
case SEEK_NEXT_ROW:
// This is just a relatively simple end of scan fix, to short-cut end
us if there is a
// endKey in the scan.
if (!matcher.moreRowsMayExistAfter(kv)) {
outResult.addAll(results);
return false;
}
close() is not being called before returning false. In all other cases close is
called before returning false. May be this is a problem.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.