mirror of https://github.com/apache/lucene.git
SOLR-1111: also use lucene filters for generating docsets
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@779407 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6bccd58110
commit
00a33b5adc
|
@ -620,6 +620,8 @@ public class SolrIndexSearcher extends IndexSearcher implements SolrInfoMBean {
|
|||
|
||||
// query must be positive
|
||||
protected DocSet getDocSetNC(Query query, DocSet filter) throws IOException {
|
||||
query = QueryUtils.simplifyQuery(query);
|
||||
|
||||
DocSetCollector collector = new DocSetCollector(maxDoc()>>6, maxDoc());
|
||||
|
||||
if (filter==null) {
|
||||
|
|
Loading…
Reference in New Issue