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 <[email protected]> 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
