This is an automated email from the ASF dual-hosted git repository.

jackietien pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new b929aa22350 Fix incorrect time slice calculation in 
AbstractDefaultAggTableScanOperator (#17195)
b929aa22350 is described below

commit b929aa22350a918297aac4a995bbb3bef3f58cd9
Author: shuwenwei <[email protected]>
AuthorDate: Wed Feb 11 10:25:35 2026 +0800

    Fix incorrect time slice calculation in AbstractDefaultAggTableScanOperator 
(#17195)
---
 .../operator/source/relational/AbstractDefaultAggTableScanOperator.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/source/relational/AbstractDefaultAggTableScanOperator.java
 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/source/relational/AbstractDefaultAggTableScanOperator.java
index 56eddc11533..8c544a4d564 100644
--- 
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/source/relational/AbstractDefaultAggTableScanOperator.java
+++ 
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/execution/operator/source/relational/AbstractDefaultAggTableScanOperator.java
@@ -69,7 +69,7 @@ public abstract class AbstractDefaultAggTableScanOperator 
extends AbstractAggTab
 
     // start stopwatch, reset leftRuntimeOfOneNextCall
     long start = System.nanoTime();
-    leftRuntimeOfOneNextCall = 1000 * 
operatorContext.getMaxRunTime().roundTo(TimeUnit.NANOSECONDS);
+    leftRuntimeOfOneNextCall = 
operatorContext.getMaxRunTime().roundTo(TimeUnit.NANOSECONDS);
     long maxRuntime = leftRuntimeOfOneNextCall;
 
     while (System.nanoTime() - start < maxRuntime

Reply via email to