You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ja...@apache.org on 2023/04/04 08:08:59 UTC

[iotdb] branch FIDig updated: correct fragment id

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

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


The following commit(s) were added to refs/heads/FIDig by this push:
     new f72e9ead5e correct fragment id
f72e9ead5e is described below

commit f72e9ead5e188c6220de494e93de025c3ce7b194
Author: JackieTien97 <ja...@gmail.com>
AuthorDate: Tue Apr 4 16:08:45 2023 +0800

    correct fragment id
---
 .../main/java/org/apache/iotdb/db/mpp/common/FragmentInstanceId.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/mpp/common/FragmentInstanceId.java b/server/src/main/java/org/apache/iotdb/db/mpp/common/FragmentInstanceId.java
index 24164c4e89..1d5ca26b22 100644
--- a/server/src/main/java/org/apache/iotdb/db/mpp/common/FragmentInstanceId.java
+++ b/server/src/main/java/org/apache/iotdb/db/mpp/common/FragmentInstanceId.java
@@ -58,7 +58,7 @@ public class FragmentInstanceId {
   }
 
   public String getFragmentInstanceId() {
-    return fragmentId + "." + instanceId;
+    return fragmentId.getId() + "." + instanceId;
   }
 
   public String toString() {