[
https://issues.apache.org/jira/browse/LUCENE-3446?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Uwe Schindler resolved LUCENE-3446.
-----------------------------------
Resolution: Fixed
Fix Version/s: 4.0
3.5
Backported to 3.x branch revision: 1174418
> NullPointerException in BooleanFilter
> --------------------------------------
>
> Key: LUCENE-3446
> URL: https://issues.apache.org/jira/browse/LUCENE-3446
> Project: Lucene - Java
> Issue Type: Bug
> Components: modules/other
> Affects Versions: 3.4
> Reporter: Shuji Umino
> Assignee: Uwe Schindler
> Priority: Minor
> Fix For: 3.5, 4.0
>
> Attachments: LUCENE-3446.patch, LUCENE-3446.patch, LUCENE-3446.patch
>
>
> BooleanFilter getDISI() method used with QueryWrapperFilter occur
> NullPointerException,
> if any QueryWrapperFilter not match terms in IndexReader.
> ---------------------------------------------------
> java.lang.NullPointerException
> at
> org.apache.lucene.util.OpenBitSetDISI.inPlaceAnd(OpenBitSetDISI.java:66)
> at
> org.apache.lucene.search.BooleanFilter.getDocIdSet(BooleanFilter.java:102)
> at
> org.apache.lucene.search.IndexSearcher.searchWithFilter(IndexSearcher.java:551)
> at org.apache.lucene.search.IndexSearcher.search(IndexSearcher.java:532)
> at org.apache.lucene.search.IndexSearcher.search(IndexSearcher.java:463)
> at org.apache.lucene.search.IndexSearcher.search(IndexSearcher.java:433)
> at org.apache.lucene.search.IndexSearcher.search(IndexSearcher.java:356)
> at test.BooleanFilterTest.main(BooleanFilterTest.java:50)
> ---------------------------------------------------
> null-check below lines.
> ---------------------------------------------------
> res = new OpenBitSetDISI(getDISI(shouldFilters, i, reader), reader.maxDoc());
> res.inPlaceOr(getDISI(shouldFilters, i, reader));
> res = new OpenBitSetDISI(getDISI(notFilters, i, reader), reader.maxDoc());
> res.inPlaceNot(getDISI(notFilters, i, reader));
> res = new OpenBitSetDISI(getDISI(mustFilters, i, reader), reader.maxDoc());
> res.inPlaceAnd(getDISI(mustFilters, i, reader));
> ---------------------------------------------------
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]