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

tanxinyu 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 8562eead2bc add remote storage block for tiered storage (#12535)
8562eead2bc is described below

commit 8562eead2bc54da50fc48fa4f49f75de93145506
Author: Alan Choo <[email protected]>
AuthorDate: Fri May 17 14:23:35 2024 +0800

    add remote storage block for tiered storage (#12535)
---
 .../db/storageengine/dataregion/tsfile/TsFileResourceBlockType.java      | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/tsfile/TsFileResourceBlockType.java
 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/tsfile/TsFileResourceBlockType.java
index 0a599659500..a45073a1cc8 100644
--- 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/tsfile/TsFileResourceBlockType.java
+++ 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/tsfile/TsFileResourceBlockType.java
@@ -27,6 +27,7 @@ import java.io.OutputStream;
 public enum TsFileResourceBlockType {
   EMPTY_BLOCK((byte) 0),
   PROGRESS_INDEX((byte) 1),
+  REMOTE_STORAGE_BLOCK((byte) 2),
   ;
 
   private final byte type;

Reply via email to