Skip to content

Commit

Permalink
[Fix](JournalEntity) re-add a line of code that is accidentally remov…
Browse files Browse the repository at this point in the history
…ed in #19917 (#36423)

## Proposed changes

`isRead = true;` is accidentally removed in #19917 for
`OperationType.OP_DELETE_ANALYSIS_TASK`



![bug](https://github.com/apache/doris/assets/68336428/acbcde92-9a64-4c3e-8ae9-86b1a45dfb7f)
  • Loading branch information
bobhan1 authored Jun 24, 2024
1 parent c7eed73 commit d7dc33a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -862,6 +862,7 @@ public void readFields(DataInput in) throws IOException {
}
case OperationType.OP_DELETE_ANALYSIS_TASK: {
data = AnalyzeDeletionLog.read(in);
isRead = true;
break;
}
case OperationType.OP_UPDATE_AUTO_INCREMENT_ID: {
Expand Down

0 comments on commit d7dc33a

Please sign in to comment.