Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ public class CloudReplica extends Replica implements GsonPostProcessable {
private long tableId = -1;
@SerializedName(value = "partitionId")
private long partitionId = -1;
@SerializedName(value = "indexId")
private long indexId = -1;
@SerializedName(value = "idx")
private long idx = -1;

Expand Down Expand Up @@ -94,7 +92,6 @@ public CloudReplica(long replicaId, Long backendId, ReplicaState state, long ver
this.dbId = dbId;
this.tableId = tableId;
this.partitionId = partitionId;
this.indexId = indexId;
this.idx = idx;
}

Expand Down Expand Up @@ -558,10 +555,6 @@ public long getPartitionId() {
return partitionId;
}

public long getIndexId() {
return indexId;
}

public long getIdx() {
return idx;
}
Expand Down
Loading