Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
cherylEnkidu committed Jun 27, 2023
1 parent 6caf02f commit 69eac52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 374 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public ImmutableSortedMap<DocumentKey, Document> getDocumentsMatchingQuery(
return super.getDocumentsMatchingQuery(query, offset);
}
};
queryEngine.initialize(localDocuments, indexManager, false);
queryEngine.initialize(localDocuments, indexManager);
}

/** Adds the provided documents to the remote document cache. */
Expand Down Expand Up @@ -232,7 +232,7 @@ public void testCombinesIndexedWithNonIndexedResults() throws Exception {
TimeUnit.MILLISECONDS.convert(
(beforeAutoEnd - beforeAutoStart), TimeUnit.NANOSECONDS);
totalBeforeIndex += (beforeAutoEnd - beforeAutoStart);
totalDocumentCount += counterWithoutIndex.fullScanCount;
totalDocumentCount += counterWithoutIndex.getDocumentCount();
assertEquals(portion * totalSetCount, results.size());

QueryContext counterWithIndex = new QueryContext();
Expand All @@ -254,7 +254,7 @@ public void testCombinesIndexedWithNonIndexedResults() throws Exception {
+ numOfFields
+ " fields.\n"
+ "Weight result for without auto indexing is "
+ without * counterWithoutIndex.fullScanCount
+ without * counterWithoutIndex.getDocumentCount()
+ ". And weight result for auto indexing is "
+ with * results.size());
}
Expand Down

0 comments on commit 69eac52

Please sign in to comment.