Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -477,9 +477,6 @@ tests:
- class: org.elasticsearch.xpack.esql.qa.single_node.PushQueriesIT
method: testEqualityAndOther {semantic_text}
issue: https://github.com/elastic/elasticsearch/issues/128414
- class: org.elasticsearch.index.query.MultiMatchQueryBuilderTests
method: testToQuery
issue: https://github.com/elastic/elasticsearch/issues/128416
- class: org.elasticsearch.xpack.ml.integration.InferenceIngestIT
method: testPipelineIngestWithModelAliases
issue: https://github.com/elastic/elasticsearch/issues/128417
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import org.apache.lucene.search.DisjunctionMaxQuery;
import org.apache.lucene.search.FuzzyQuery;
import org.apache.lucene.search.IndexOrDocValuesQuery;
import org.apache.lucene.search.IndexSortSortedNumericDocValuesRangeQuery;
import org.apache.lucene.search.MatchAllDocsQuery;
import org.apache.lucene.search.MatchNoDocsQuery;
import org.apache.lucene.search.PhraseQuery;
Expand Down Expand Up @@ -170,7 +171,8 @@ protected void doAssertLuceneQuery(MultiMatchQueryBuilder queryBuilder, Query qu
instanceOf(PhraseQuery.class),
instanceOf(PointRangeQuery.class),
instanceOf(IndexOrDocValuesQuery.class),
instanceOf(PrefixQuery.class)
instanceOf(PrefixQuery.class),
instanceOf(IndexSortSortedNumericDocValuesRangeQuery.class)
)
)
);
Expand Down