This is an automated email from the ASF dual-hosted git repository. zhihao pushed a commit to branch fix/szh/window_partition_bug in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 2790005626030a80519503e6cd55f0a4fc46435d Author: Sh-Zh-7 <[email protected]> AuthorDate: Wed Nov 26 09:54:54 2025 +0800 MVN spotless apply again. --- .../execution/operator/process/window/TableWindowOperator.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/process/window/TableWindowOperator.java b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/process/window/TableWindowOperator.java index f7d0bf3b61a..b074ae93c42 100644 --- a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/process/window/TableWindowOperator.java +++ b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/process/window/TableWindowOperator.java @@ -318,8 +318,7 @@ public class TableWindowOperator implements ProcessOperator { // Reset window functions for new partition partitionExecutor.resetWindowFunctions(); - while (!tsBlockBuilder.isFull() - && partitionExecutor.hasNext()) { + while (!tsBlockBuilder.isFull() && partitionExecutor.hasNext()) { partitionExecutor.processNextRow(tsBlockBuilder); }
