Skip to content

Commit 55e0619

Browse files
github-actions[bot]dataroaringclaude
authored
branch-4.1: [opt](memory) Remove unused indexId field from CloudReplica #62080 (#62097)
Cherry-picked from #62080 Co-authored-by: Yongqiang YANG <yangyongqiang@selectdb.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 592c63c commit 55e0619

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

fe/fe-core/src/main/java/org/apache/doris/cloud/catalog/CloudReplica.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@ public class CloudReplica extends Replica implements GsonPostProcessable {
6363
private long tableId = -1;
6464
@SerializedName(value = "partitionId")
6565
private long partitionId = -1;
66-
@SerializedName(value = "indexId")
67-
private long indexId = -1;
6866
@SerializedName(value = "idx")
6967
private long idx = -1;
7068
// last time to get tablet stats
@@ -105,7 +103,6 @@ public CloudReplica(long replicaId, Long backendId, ReplicaState state, long ver
105103
super(replicaId, -1, state, version, schemaHash);
106104
this.tableId = tableId;
107105
this.partitionId = partitionId;
108-
this.indexId = indexId;
109106
this.idx = idx;
110107
}
111108

@@ -534,10 +531,6 @@ public long getPartitionId() {
534531
return partitionId;
535532
}
536533

537-
public long getIndexId() {
538-
return indexId;
539-
}
540-
541534
public long getIdx() {
542535
return idx;
543536
}

0 commit comments

Comments
 (0)