Skip to content

Commit 2214c97

Browse files
fix: default true for snapshot builds, false otherwise
1 parent 0a40c32 commit 2214c97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/org/elasticsearch/index/IndexSettings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ public boolean isES87TSDBCodecEnabled() {
688688
public static final FeatureFlag DOC_VALUES_SPARSE_INDEX = new FeatureFlag("doc_values_sparse_index");
689689
public static final Setting<Boolean> USE_DOC_VALUES_SPARSE_INDEX = Setting.boolSetting(
690690
"index.mapping.use_doc_values_sparse_index",
691-
false,
691+
IndexSettings.DOC_VALUES_SPARSE_INDEX.isEnabled(),
692692
Property.IndexScope,
693693
Property.Final
694694
);

0 commit comments

Comments
 (0)