Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
0.90.3
-
None
-
all
-
Reviewed
Description
[...] while (it.hasNext()) { KeyValue kv = it.next(); // if this isnt the row we are interested in, then bail: if (!firstKv.matchingColumn(family, qualifier) || !firstKv.matchingRow(kv)) { break; // rows dont match, bail. } [...] }
should be replaced by:
// if this isnt the row we are interested in, then bail: if (!kv.matchingColumn(family, qualifier) || !firstKv.matchingRow(kv)) { break; // rows dont match, bail. }