[branch-2.1] Picks "[Fix](partial update) Fix partial update failed when merge_type=MERGE #40730" (#40951)
picks https://github.com/apache/doris/pull/40730
This commit is contained in:
@ -189,7 +189,8 @@ public class StreamLoadPlanner {
|
||||
}
|
||||
}
|
||||
}
|
||||
if (taskInfo.getMergeType() == LoadTask.MergeType.DELETE) {
|
||||
if (taskInfo.getMergeType() == LoadTask.MergeType.DELETE
|
||||
|| taskInfo.getMergeType() == LoadTask.MergeType.MERGE) {
|
||||
partialUpdateInputColumns.add(Column.DELETE_SIGN);
|
||||
}
|
||||
}
|
||||
@ -440,7 +441,8 @@ public class StreamLoadPlanner {
|
||||
}
|
||||
}
|
||||
}
|
||||
if (taskInfo.getMergeType() == LoadTask.MergeType.DELETE) {
|
||||
if (taskInfo.getMergeType() == LoadTask.MergeType.DELETE
|
||||
|| taskInfo.getMergeType() == LoadTask.MergeType.MERGE) {
|
||||
partialUpdateInputColumns.add(Column.DELETE_SIGN);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user