Skip to content

Commit e091235

Browse files
authored
Skip using value 1 for skipIndexIntervalSize (#133227)
1 parent 18286be commit e091235

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

muted-tests.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -600,15 +600,6 @@ tests:
600600
- class: org.elasticsearch.xpack.esql.action.RandomizedTimeSeriesIT
601601
method: testGroupBySubset
602602
issue: https://github.com/elastic/elasticsearch/issues/133220
603-
- class: org.elasticsearch.index.codec.tsdb.es819.ES819TSDBDocValuesFormatTests
604-
method: testSortedDocValuesSingleUniqueValue
605-
issue: https://github.com/elastic/elasticsearch/issues/133221
606-
- class: org.elasticsearch.index.codec.tsdb.es819.ES819TSDBDocValuesFormatTests
607-
method: testSortedNumberMergeAwayAllValuesWithSkipper
608-
issue: https://github.com/elastic/elasticsearch/issues/133223
609-
- class: org.elasticsearch.index.codec.tsdb.es819.ES819TSDBDocValuesFormatTests
610-
method: testSortedSetDocValuesWithSkipperSmall
611-
issue: https://github.com/elastic/elasticsearch/issues/133224
612603
- class: org.elasticsearch.xpack.esql.action.RandomizedTimeSeriesIT
613604
method: testGroupByNothing
614605
issue: https://github.com/elastic/elasticsearch/issues/133225

server/src/test/java/org/elasticsearch/index/codec/tsdb/es819/ES819TSDBDocValuesFormatTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public class ES819TSDBDocValuesFormatTests extends ES87TSDBDocValuesFormatTests
6666
private final Codec codec = new Elasticsearch900Lucene101Codec() {
6767

6868
final ES819TSDBDocValuesFormat docValuesFormat = new ES819TSDBDocValuesFormat(
69-
ESTestCase.randomIntBetween(1, 4096),
69+
ESTestCase.randomIntBetween(2, 4096),
7070
ESTestCase.randomIntBetween(1, 512),
7171
random().nextBoolean()
7272
);

0 commit comments

Comments
 (0)