This is an automated email from the ASF dual-hosted git repository. leirui pushed a commit to branch research/area-visualization in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 8174cf4381e99576526bd237262d3b27860e8928 Author: Lei Rui <[email protected]> AuthorDate: Tue Feb 4 00:04:36 2025 +0800 add --- .../main/java/org/apache/iotdb/tsfile/common/conf/TSFileConfig.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsfile/src/main/java/org/apache/iotdb/tsfile/common/conf/TSFileConfig.java b/tsfile/src/main/java/org/apache/iotdb/tsfile/common/conf/TSFileConfig.java index 3e90214d277..071f495bef9 100644 --- a/tsfile/src/main/java/org/apache/iotdb/tsfile/common/conf/TSFileConfig.java +++ b/tsfile/src/main/java/org/apache/iotdb/tsfile/common/conf/TSFileConfig.java @@ -27,15 +27,15 @@ import java.nio.charset.Charset; /** TSFileConfig is a configure class. Every variables is public and has default value. */ public class TSFileConfig implements Serializable { - private boolean writeConvexHull = true; + private boolean writeConvexHull = false; private boolean enableMinMaxLSM = false; private boolean useStatistics = true; - private boolean useTimeIndex = true; + private boolean useTimeIndex = false; - private boolean useValueIndex = true; + private boolean useValueIndex = false; private boolean useMad = false;
