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
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ public class CcsCommonYamlTestSuiteIT extends ESClientYamlSuiteTestCase {
.setting("xpack.license.self_generated.type", "trial")
.feature(FeatureFlag.TIME_SERIES_MODE)
.feature(FeatureFlag.SYNTHETIC_VECTORS)
.feature(FeatureFlag.DOC_VALUES_SKIPPER)
.feature(FeatureFlag.GENERIC_VECTOR_FORMAT);

private static ElasticsearchCluster remoteCluster = ElasticsearchCluster.local()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ public class RcsCcsCommonYamlTestSuiteIT extends ESClientYamlSuiteTestCase {
.feature(FeatureFlag.TIME_SERIES_MODE)
.feature(FeatureFlag.SYNTHETIC_VECTORS)
.feature(FeatureFlag.GENERIC_VECTOR_FORMAT)
.feature(FeatureFlag.DOC_VALUES_SKIPPER)
.user("test_admin", "x-pack-test-password");

private static ElasticsearchCluster fulfillingCluster = ElasticsearchCluster.local()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1853,6 +1853,7 @@ protected boolean supportsDocValuesSkippers() {

public void testDocValuesSkippers() throws IOException {
assumeTrue("Mapper does not support doc values skippers", supportsDocValuesSkippers());
assumeTrue("FeatureFlag disabled", IndexSettings.DOC_VALUES_SKIPPER);

IndexVersion preSkipperVersion = IndexVersionUtils.randomPreviousCompatibleVersion(
random(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -687,6 +687,9 @@ public void testSnapshotMountedIndexLeavesBlobsUntouched() throws Exception {
}

public void testSnapshotMountedIndexWithTimestampsRecordsTimestampRangeInIndexMetadata() throws Exception {

assumeTrue("Skipper feature flag disabled", IndexSettings.DOC_VALUES_SKIPPER);

final String indexName = randomAlphaOfLength(10).toLowerCase(Locale.ROOT);
int numShards = between(1, 3);

Expand Down