SteveYurongSu commented on code in PR #11757:
URL: https://github.com/apache/iotdb/pull/11757#discussion_r1436071586


##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/event/common/tablet/TabletInsertionDataContainer.java:
##########
@@ -105,7 +115,14 @@ private void parse(InsertRowNode insertRowNode, String 
pattern) {
 
     this.deviceId = insertRowNode.getDevicePath().getFullPath();
     this.isAligned = insertRowNode.isAligned();
-    this.timestampColumn = new long[] {insertRowNode.getTime()};
+
+    final long[] originTimestampColumn = new long[] {insertRowNode.getTime()};
+    List<Integer> rowIndexList =

Review Comment:
   Maybe this procedure can be accelerated because the originTimestampColumn is 
sorted?



-- 
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]

Reply via email to