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 @@ -82,7 +82,9 @@ public Long getTableId() {
}

public Long getPartitionId() {
return partitionId;
// the field partition ID was added in PR: apache/doris#37196, the old version doesn't
// contain this field so it will be null.
return partitionId == null ? -1 : partitionId;
}

public String getPartitionName() {
Expand Down