Skip to content

Commit a241b27

Browse files
xiaokangdataroaring
authored andcommitted
[change](index) change enable_create_bitmap_index_as_inverted_index default to true (#36692)
When an user create a new BITMAP INDEX, an INVERTED INDEX will be created instead, since INVERTED INDEX is ready to replace BITMAP INDEX. The transformation is transparent to user and nothing need to be done by user. Already existed BITMAP INDEX will NOT be changed and can be used as before.
1 parent f1e9d07 commit a241b27

File tree

1 file changed

+1
-1
lines changed
  • fe/fe-common/src/main/java/org/apache/doris/common

1 file changed

+1
-1
lines changed

fe/fe-common/src/main/java/org/apache/doris/common/Config.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2757,7 +2757,7 @@ public static int metaServiceRpcRetryTimes() {
27572757
public static boolean enable_light_index_change = true;
27582758

27592759
@ConfField(mutable = true, masterOnly = true)
2760-
public static boolean enable_create_bitmap_index_as_inverted_index = false;
2760+
public static boolean enable_create_bitmap_index_as_inverted_index = true;
27612761

27622762
@ConfField(mutable = true)
27632763
public static boolean enable_create_inverted_index_for_array = false;

0 commit comments

Comments
 (0)