This is an automated email from the ASF dual-hosted git repository.
qiaojialin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new b5f05c7 count endless loop (#1173)
b5f05c7 is described below
commit b5f05c7d1d3fa4b8a45f6ec4a94a9a011efd9f42
Author: Jackie Tien <[email protected]>
AuthorDate: Fri May 8 19:48:11 2020 +0800
count endless loop (#1173)
---
.../java/org/apache/iotdb/db/query/executor/AggregationExecutor.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/server/src/main/java/org/apache/iotdb/db/query/executor/AggregationExecutor.java
b/server/src/main/java/org/apache/iotdb/db/query/executor/AggregationExecutor.java
index f102f54..04e80f2 100644
---
a/server/src/main/java/org/apache/iotdb/db/query/executor/AggregationExecutor.java
+++
b/server/src/main/java/org/apache/iotdb/db/query/executor/AggregationExecutor.java
@@ -227,7 +227,7 @@ public class AggregationExecutor {
if (remainingToCalculate == 0) {
return 0;
}
- seriesReader.skipCurrentChunk();
+ seriesReader.skipCurrentPage();
continue;
}
BatchData nextOverlappedPageData = seriesReader.nextPage();