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 @@ -417,9 +417,6 @@ tests:
- class: org.elasticsearch.xpack.inference.integration.AuthorizationTaskExecutorIT
method: testCreatesChatCompletion_AndThenCreatesTextEmbedding
issue: https://github.com/elastic/elasticsearch/issues/138012
- class: org.elasticsearch.index.mapper.DateFieldMapperTests
method: testSortShortcuts
issue: https://github.com/elastic/elasticsearch/issues/138018
- class: org.elasticsearch.xpack.ml.integration.ForecastIT
method: testOverflowToDisk
issue: https://github.com/elastic/elasticsearch/issues/138055
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import org.apache.lucene.index.IndexWriterConfig;
import org.apache.lucene.index.IndexableField;
import org.apache.lucene.index.LeafReaderContext;
import org.apache.lucene.search.DocIdSetIterator;
import org.apache.lucene.search.Sort;
import org.apache.lucene.search.SortField;
import org.apache.lucene.store.Directory;
Expand All @@ -35,7 +34,6 @@
import org.elasticsearch.index.codec.tsdb.es819.ES819TSDBDocValuesFormat;
import org.elasticsearch.index.mapper.DateFieldMapper.DateFieldType;
import org.elasticsearch.index.mapper.blockloader.docvalues.LongsBlockLoader;
import org.elasticsearch.lucene.comparators.XUpdateableDocIdSetIterator;
import org.elasticsearch.script.DateFieldScript;
import org.elasticsearch.script.ScriptService;
import org.elasticsearch.search.DocValueFormat;
Expand All @@ -51,7 +49,6 @@
import java.time.ZonedDateTime;
import java.util.Comparator;
import java.util.List;
import java.util.function.Consumer;
import java.util.stream.IntStream;
import java.util.stream.Stream;

Expand Down Expand Up @@ -919,12 +916,6 @@ public void testSingletonLongBulkBlockReadingManyValues() throws Exception {
}
}

private static final Consumer<DocIdSetIterator> checkClass = disi -> {
assertThat(disi, instanceOf(XUpdateableDocIdSetIterator.class));
XUpdateableDocIdSetIterator iterator = (XUpdateableDocIdSetIterator) disi;
assertThat(iterator.getDelegate().getClass().getName(), containsString("SecondarySortIterator"));
};

@Override
protected List<SortShortcutSupport> getSortShortcutSupport() {
return List.of(
Expand Down