Skip to content
Merged
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 @@ -533,4 +533,15 @@ public void setAncestorsName(String ancestorsName) {
public Collection<String> getLogicPrimaries() {
return logicPrimaries;
}

private String type;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TapTable is Serializable and the default ObjectSerializable.FromObjectOptions serializes Serializable objects via Java serialization; adding this new field will change the computed serialVersionUID and can break deserialization of previously persisted TapTable instances after an upgrade. Please double-check backward-compatibility expectations for any stored/cached TapTable blobs (e.g., KV/sequence storage, offsets).

Severity: medium

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.


public String getType() {
return type;
}

public void setType(String type) {
this.type = type;
}

}