This is an automated email from the ASF dual-hosted git repository. zhihao pushed a commit to branch perf/szh/optimize_window_partition in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit 0d78f7b1f10dcaf73565d1b976339f47b5585886 Author: Sh-Zh-7 <[email protected]> AuthorDate: Mon Mar 9 19:08:53 2026 +0800 MVN spotless apply. --- .../execution/operator/process/window/TableWindowOperator.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 9309ee10479..f91febf11e2 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 @@ -205,7 +205,11 @@ public class TableWindowOperator implements ProcessOperator { Partition partition = new Partition(partitionCache.getSlices()); PartitionExecutor partitionExecutor = new PartitionExecutor( - partition, inputDataTypes, outputChannels, windowFunctions, frameInfoList, + partition, + inputDataTypes, + outputChannels, + windowFunctions, + frameInfoList, sortChannels); cachedPartitionExecutors.addLast(partitionExecutor); releasePartitionCacheMemory();
