This is an automated email from the ASF dual-hosted git repository. jackietien pushed a commit to branch TyPageBug1 in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git
commit d924d8a01b58b48e1f393009b0ccc25200de5a26 Author: JackieTien97 <[email protected]> AuthorDate: Fri May 8 19:23:00 2020 +0800 count endless loop --- .../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();
