Sh-Zh-7 commented on code in PR #15151:
URL: https://github.com/apache/iotdb/pull/15151#discussion_r2113477451


##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/process/window/TableWindowOperator.java:
##########
@@ -148,6 +148,9 @@ public TsBlock next() throws Exception {
       // In this case, all partition executors are done
     }
 
+    if (!inputOperator.isBlocked().isDone()) {
+      return null;
+    }

Review Comment:
   Done.



##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/process/window/partition/frame/RangeFrame.java:
##########
@@ -76,7 +76,8 @@ public Range getRange(
       int currentPosition, int currentGroup, int peerGroupStart, int 
peerGroupEnd) {
     // Full partition
     if (frameInfo.getStartType() == UNBOUNDED_PRECEDING
-        && frameInfo.getEndType() == UNBOUNDED_FOLLOWING || noOrderBy) {
+            && frameInfo.getEndType() == UNBOUNDED_FOLLOWING
+        || noOrderBy) {

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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to