You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by zy...@apache.org on 2023/03/21 15:21:50 UTC

[iotdb] branch master updated: Ignore flaky test testMemoryStatistics (#9402)

This is an automated email from the ASF dual-hosted git repository.

zyk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new f741a6e9c3 Ignore flaky test testMemoryStatistics (#9402)
f741a6e9c3 is described below

commit f741a6e9c36d3baade287b977e281f8256c5e49b
Author: Zhang.Jinrui <xi...@gmail.com>
AuthorDate: Tue Mar 21 23:21:41 2023 +0800

    Ignore flaky test testMemoryStatistics (#9402)
---
 .../org/apache/iotdb/db/metadata/schemaRegion/SchemaStatisticsTest.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/server/src/test/java/org/apache/iotdb/db/metadata/schemaRegion/SchemaStatisticsTest.java b/server/src/test/java/org/apache/iotdb/db/metadata/schemaRegion/SchemaStatisticsTest.java
index f2c86dc0ca..741a887084 100644
--- a/server/src/test/java/org/apache/iotdb/db/metadata/schemaRegion/SchemaStatisticsTest.java
+++ b/server/src/test/java/org/apache/iotdb/db/metadata/schemaRegion/SchemaStatisticsTest.java
@@ -39,6 +39,7 @@ import org.apache.iotdb.tsfile.file.metadata.enums.TSEncoding;
 import org.apache.iotdb.tsfile.write.schema.MeasurementSchema;
 
 import org.junit.Assert;
+import org.junit.Ignore;
 import org.junit.Test;
 
 import java.util.Arrays;
@@ -53,6 +54,7 @@ public class SchemaStatisticsTest extends AbstractSchemaRegionTest {
   }
 
   @Test
+  @Ignore
   public void testMemoryStatistics() throws Exception {
     ISchemaRegion schemaRegion1 = getSchemaRegion("root.sg1", 0);
     ISchemaRegion schemaRegion2 = getSchemaRegion("root.sg2", 1);