Review ++

This commit is contained in:
Jim Ferenczi 2015-12-10 14:19:19 +01:00
parent 437488ae64
commit 176a4fc8da
2 changed files with 31 additions and 31 deletions

View File

@ -2471,7 +2471,7 @@ public class HighlighterSearchIT extends ESIntegTestCase {
logger.info("--> highlighting and searching on field1");
SearchSourceBuilder source = searchSource().query(boolQuery()
.should(boolQuery().mustNot(constantScoreQuery(QueryBuilders.existsQuery("field1"))))
.should(boolQuery().mustNot(QueryBuilders.existsQuery("field1")))
.should(matchQuery("field1", "test"))
.should(constantScoreQuery(queryStringQuery("field1:photo*"))))
.highlighter(highlight().field("field1"));