You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ma...@apache.org on 2022/12/01 01:50:55 UTC

[iotdb] branch fix-compaction-ci created (now 6c6ba70c82)

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

marklau99 pushed a change to branch fix-compaction-ci
in repository https://gitbox.apache.org/repos/asf/iotdb.git


      at 6c6ba70c82 fix ci

This branch includes the following new commits:

     new 6c6ba70c82 fix ci

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[iotdb] 01/01: fix ci

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

marklau99 pushed a commit to branch fix-compaction-ci
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 6c6ba70c825e492c2569e4953d32349200d78f5f
Author: Liu Xuxin <li...@outlook.com>
AuthorDate: Thu Dec 1 09:50:40 2022 +0800

    fix ci
---
 .../org/apache/iotdb/db/engine/storagegroup/TsFileResourceList.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/engine/storagegroup/TsFileResourceList.java b/server/src/main/java/org/apache/iotdb/db/engine/storagegroup/TsFileResourceList.java
index 33b5cdfa55..a7c5ea8b3f 100644
--- a/server/src/main/java/org/apache/iotdb/db/engine/storagegroup/TsFileResourceList.java
+++ b/server/src/main/java/org/apache/iotdb/db/engine/storagegroup/TsFileResourceList.java
@@ -250,12 +250,12 @@ public class TsFileResourceList implements List<TsFileResource> {
 
   @Override
   public Object[] toArray() {
-    throw new NotImplementedException();
+    return getArrayList().toArray();
   }
 
   @Override
   public <T> T[] toArray(T[] a) {
-    throw new NotImplementedException();
+    return getArrayList().toArray(a);
   }
 
   @Override