You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2021/11/26 07:06:56 UTC

[iotdb] branch master updated: [IOTDB-2063] Fix MinTimeDescAggregationResult implementation (#4471)

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/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new be43397  [IOTDB-2063] Fix MinTimeDescAggregationResult implementation (#4471)
be43397 is described below

commit be4339701e29c91f757c4e4821bd396ef0d8695f
Author: BaiJian <er...@hotmail.com>
AuthorDate: Fri Nov 26 15:06:22 2021 +0800

    [IOTDB-2063] Fix MinTimeDescAggregationResult implementation (#4471)
---
 .../iotdb/db/query/aggregation/impl/MinTimeDescAggrResult.java       | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/server/src/main/java/org/apache/iotdb/db/query/aggregation/impl/MinTimeDescAggrResult.java b/server/src/main/java/org/apache/iotdb/db/query/aggregation/impl/MinTimeDescAggrResult.java
index 9abceb5..071d3d2 100644
--- a/server/src/main/java/org/apache/iotdb/db/query/aggregation/impl/MinTimeDescAggrResult.java
+++ b/server/src/main/java/org/apache/iotdb/db/query/aggregation/impl/MinTimeDescAggrResult.java
@@ -67,4 +67,9 @@ public class MinTimeDescAggrResult extends MinTimeAggrResult {
   public boolean hasFinalResult() {
     return false;
   }
+
+  @Override
+  public boolean isAscending() {
+    return false;
+  }
 }