[ 
https://issues.apache.org/jira/browse/LUCENE-9524?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17216942#comment-17216942
 ] 

ASF subversion and git services commented on LUCENE-9524:
---------------------------------------------------------

Commit 2019433e92f3c26e3abe1b2201f4590f9dfb21be in lucene-solr's branch 
refs/heads/branch_8_7 from Adrien Grand
[ https://gitbox.apache.org/repos/asf?p=lucene-solr.git;h=2019433 ]

LUCENE-9524: Fix test failure.


> NullPointerException in IndexSearcher.explain() when using 
> ComplexPhraseQueryParser
> -----------------------------------------------------------------------------------
>
>                 Key: LUCENE-9524
>                 URL: https://issues.apache.org/jira/browse/LUCENE-9524
>             Project: Lucene - Core
>          Issue Type: Bug
>          Components: core/queryparser, core/search
>    Affects Versions: 8.6, 8.6.2
>            Reporter: Michał Słomkowski
>            Priority: Major
>             Fix For: 8.7
>
>          Time Spent: 1.5h
>  Remaining Estimate: 0h
>
> I get NPE when I use {{IndexSearcher.explain()}}. Checked with Lucene 8.6.0
> and 8.6.2.
> The query: {{(lorem AND NOT "dolor lorem") OR ipsum}}
> The text: {{dolor lorem ipsum}}
> Stack trace:
> {code}
> java.lang.NullPointerException at 
> java.util.Objects.requireNonNull(Objects.java:203)
>       at org.apache.lucene.search.LeafSimScorer.<init>(LeafSimScorer.java:38)
>       at 
> org.apache.lucene.search.spans.SpanWeight.explain(SpanWeight.java:160)
>       at org.apache.lucene.search.BooleanWeight.explain(BooleanWeight.java:87)
>       at org.apache.lucene.search.BooleanWeight.explain(BooleanWeight.java:87)
>       at 
> org.apache.lucene.search.IndexSearcher.explain(IndexSearcher.java:716)
>       at 
> org.apache.lucene.search.IndexSearcher.explain(IndexSearcher.java:693)
> {code}
> Minimal example code:
> {code:java}
> val analyzer = new StandardAnalyzer();
> val query = new ComplexPhraseQueryParser("", analyzer).parse(queryString);
> final MemoryIndex memoryIndex = new MemoryIndex(true);
> memoryIndex.addField("", text, analyzer);
> final IndexSearcher searcher = memoryIndex.createSearcher();
> final TopDocs topDocs = searcher.search(query, 1);
> final ScoreDoc match = topDocs.scoreDocs[0];
> searcher.explain(query, match.doc);
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to