wshao08 commented on a change in pull request #1400: URL: https://github.com/apache/incubator-iotdb/pull/1400#discussion_r451304936
########## File path: server/src/main/java/org/apache/iotdb/db/qp/physical/crud/DeletePlan.java ########## @@ -57,16 +73,39 @@ public DeletePlan(long deleteTime, Path path) { */ public DeletePlan(long deleteTime, List<Path> paths) { super(false, Operator.OperatorType.DELETE); - this.deleteTime = deleteTime; + this.deleteStartTime = Long.MIN_VALUE; + this.deleteEndTime = deleteTime; + this.paths = paths; + } Review comment: Done ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org