Caideyipi commented on code in PR #16849:
URL: https://github.com/apache/iotdb/pull/16849#discussion_r2583505481
##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/event/common/tablet/PipeInsertNodeTabletInsertionEvent.java:
##########
@@ -147,7 +147,7 @@ private PipeInsertNodeTabletInsertionEvent(
isTableModelEvent,
databaseNameFromDataRegion);
this.insertNode = insertNode;
- this.progressIndex = insertNode.getProgressIndex();
+ this.progressIndex = Objects.nonNull(insertNode) ?
insertNode.getProgressIndex() : null;
Review Comment:
Will not be null here
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]