ChrisHegarty commented on issue #14026:
URL: https://github.com/apache/lucene/issues/14026#issuecomment-2507765415

   Taking a sample query from a failing occurrence, this query seems to not 
rewrite correctly.
   
   ```
   Query query = new BooleanQuery.Builder()
       .add(new BooleanQuery.Builder()
               .add(new TermQuery(new Term("body", "c")), Occur.SHOULD)
               .add(new TermQuery(new Term("body", "a")), Occur.SHOULD)
               .setMinimumNumberShouldMatch(0)
               .build(),
            Occur.MUST)
       .setMinimumNumberShouldMatch(1)
       .build();
   ```


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to