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 @@ -344,9 +344,6 @@ tests:
- class: org.elasticsearch.xpack.sql.qa.jdbc.single_node.SingleNodeJdbcResultSetIT
method: testValidGetObjectCalls
issue: https://github.com/elastic/elasticsearch/issues/145859
- class: org.elasticsearch.cluster.metadata.IndexMetadataTests
method: testSequenceNumbersDisabled
issue: https://github.com/elastic/elasticsearch/issues/145864
- class: org.elasticsearch.xpack.sql.qa.jdbc.single_node.SingleNodeJdbcResultSetIT
method: testGettingValidBigDecimalFromLongWithoutCasting
issue: https://github.com/elastic/elasticsearch/issues/145866
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -935,7 +935,10 @@ public void testSequenceNumbersDisabledDefaultsToFalse() {
}

public void testSequenceNumbersDisabled() {
IndexVersion indexVersion = IndexVersionUtils.randomVersionBetween(IndexVersions.DISABLE_SEQUENCE_NUMBERS, IndexVersion.current());
IndexVersion indexVersion = IndexVersionUtils.randomVersionBetween(
IndexVersions.TIME_SERIES_DISABLE_SEQUENCE_NUMBERS_DEFAULT,
IndexVersion.current()
);
var disabled = randomBoolean();
IndexMetadata metadata = IndexMetadata.builder("test")
.settings(
Expand Down
Loading