From a286a8793e484a8b64b2d578341e939891522069 Mon Sep 17 00:00:00 2001 From: "Eric C. Newton" Date: Fri, 6 Jul 2012 14:27:38 +0000 Subject: [PATCH] ACCUMULO-665 pass the appropriate column families down to the underlying 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 --- .../accumulo/examples/wikisearch/iterator/AndIterator.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/query/src/main/java/org/apache/accumulo/examples/wikisearch/iterator/AndIterator.java b/query/src/main/java/org/apache/accumulo/examples/wikisearch/iterator/AndIterator.java index eafc4dd..734d423 100644 --- a/query/src/main/java/org/apache/accumulo/examples/wikisearch/iterator/AndIterator.java +++ b/query/src/main/java/org/apache/accumulo/examples/wikisearch/iterator/AndIterator.java @@ -47,7 +47,6 @@ public class AndIterator implements SortedKeyValueIterator { private Text currentRow = null; private Text currentTerm = new Text(emptyByteArray); private Text currentDocID = new Text(emptyByteArray); - private Collection seekColumnFamilies; private Text parentEndRow; private static boolean SEEK_INCLUSIVE = true; @@ -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