Caa52 commented on a change in pull request #529: URL: https://github.com/apache/solr/pull/529#discussion_r790970904
########## File path: solr/core/src/java/org/apache/solr/search/DocSetQuery.java ########## @@ -63,7 +73,20 @@ public int hashCode() { @Override public DocSet createDocSet(SolrIndexSearcher searcher) throws IOException { - return null; + return newDocSet(searcher, Math.min(64,(searcher.maxDoc()>>>10)+4)); Review comment: Yes it should since DocSetQuery already has a DocSet. That was my mistake. I was over thinking the implementation there -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org