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

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

Commit d1163450b6a92411b63b0073e5a6d7116b23ed19 in lucene-solr's branch 
refs/heads/jira/SOLR-13452_gradle_8 from Namgyu Kim
[ https://gitbox.apache.org/repos/asf?p=lucene-solr.git;h=d116345 ]

LUCENE-9046: Fix wrong example in Javadoc of TermInSetQuery

Signed-off-by: Namgyu Kim <nam...@apache.org>

> Fix wrong example in Javadoc of TermInSetQuery
> ----------------------------------------------
>
>                 Key: LUCENE-9046
>                 URL: https://issues.apache.org/jira/browse/LUCENE-9046
>             Project: Lucene - Core
>          Issue Type: Improvement
>            Reporter: Namgyu Kim
>            Assignee: Namgyu Kim
>            Priority: Minor
>             Fix For: 8.x, master (9.0)
>
>          Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> There is a wrong example in Javadoc of TermInSetQuery.
> This patch will be merged to the master and 8.x branch.
>  
> Before
> {code:java}
> Query q1 = new TermInSetQuery(new Term("field", "foo"), new Term("field", 
> "bar"));
> BooleanQuery bq = new BooleanQuery();
> bq.add(new TermQuery(new Term("field", "foo")), Occur.SHOULD);
> bq.add(new TermQuery(new Term("field", "bar")), Occur.SHOULD);
> Query q2 = new ConstantScoreQuery(bq);
> {code}
> After
> {code:java}
> Query q1 = new TermInSetQuery("field", new BytesRef("foo"), new 
> BytesRef("bar"));
> BooleanQuery bq = new BooleanQuery();
> bq.add(new TermQuery(new Term("field", "foo")), Occur.SHOULD);
> bq.add(new TermQuery(new Term("field", "bar")), Occur.SHOULD);
> Query q2 = new ConstantScoreQuery(bq);
> {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