You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hu...@apache.org on 2022/12/13 15:00:29 UTC

[iotdb] 01/02: fix CI

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

hui pushed a commit to branch lmh/fixCI
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit c48313eb8a08c265515f03f6b922d5f48dda2f44
Author: Minghui Liu <li...@foxmail.com>
AuthorDate: Tue Dec 13 22:56:01 2022 +0800

    fix CI
---
 .../src/test/java/org/apache/iotdb/db/it/groupby/IOTDBGroupByIT.java    | 2 +-
 .../src/test/java/org/apache/iotdb/db/it/query/IoTDBNullOperandIT.java  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/integration-test/src/test/java/org/apache/iotdb/db/it/groupby/IOTDBGroupByIT.java b/integration-test/src/test/java/org/apache/iotdb/db/it/groupby/IOTDBGroupByIT.java
index 63c48cd748..ae1a23c23f 100644
--- a/integration-test/src/test/java/org/apache/iotdb/db/it/groupby/IOTDBGroupByIT.java
+++ b/integration-test/src/test/java/org/apache/iotdb/db/it/groupby/IOTDBGroupByIT.java
@@ -536,7 +536,7 @@ public class IOTDBGroupByIT {
         new String[] {count("root.test.noDataRegion.s1"), sum("root.test.noDataRegion.s1")};
     String[] retArray = new String[] {"1,0,null,", "2,0,null,"};
     resultSetEqualWithDescOrderTest(
-        "select count(s1), sum(s1) from root.test.noDataRegion" + "GROUP BY ([1, 3), 1ms)",
+        "select count(s1), sum(s1) from root.test.noDataRegion GROUP BY ([1, 3), 1ms)",
         expectedHeader,
         retArray);
   }
diff --git a/integration-test/src/test/java/org/apache/iotdb/db/it/query/IoTDBNullOperandIT.java b/integration-test/src/test/java/org/apache/iotdb/db/it/query/IoTDBNullOperandIT.java
index b08bf9f90b..142c94c4cb 100644
--- a/integration-test/src/test/java/org/apache/iotdb/db/it/query/IoTDBNullOperandIT.java
+++ b/integration-test/src/test/java/org/apache/iotdb/db/it/query/IoTDBNullOperandIT.java
@@ -181,7 +181,7 @@ public class IoTDBNullOperandIT {
     String[] retArray = new String[] {};
     resultSetEqualTest("select s1, s3, s4 from root.** where s2>0", expectedHeader, retArray);
 
-    resultSetEqualTest("select s1, s3, s4 from root.** where s2", expectedHeader, retArray);
+    resultSetEqualTest("select s1, s3, s4 from root.** where s2 is not null", expectedHeader, retArray);
 
     retArray =
         new String[] {