Skip to content
This repository has been archived by the owner on Apr 9, 2020. It is now read-only.

Commit

Permalink
ACCUMULO-665 pass the appropriate column families down to the underly…
Browse files Browse the repository at this point in the history
…ing iterators so they stay out of document locality group

git-svn-id: https://svn.apache.org/repos/asf/accumulo/branches/1.4@1358234 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Eric C. Newton committed Jul 6, 2012
1 parent a3ca5a7 commit a286a87
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ public class AndIterator implements SortedKeyValueIterator<Key,Value> {
private Text currentRow = null;
private Text currentTerm = new Text(emptyByteArray);
private Text currentDocID = new Text(emptyByteArray);
private Collection<ByteSequence> seekColumnFamilies;
private Text parentEndRow;
private static boolean SEEK_INCLUSIVE = true;

Expand Down Expand Up @@ -870,7 +869,7 @@ public boolean jump(Key jumpKey) throws IOException {
}
Key sKey = new Key(jumpKey.getRow());
Range fake = new Range(sKey, true, endKey, false);
this.seek(fake, this.seekColumnFamilies, false);
this.seek(fake, null, false);
return hasTop();
} else {
// need to check uid
Expand Down

0 comments on commit a286a87

Please sign in to comment.