You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ch...@apache.org on 2021/03/31 09:59:18 UTC

[iotdb] branch fix_vector_ci_bug created (now b8ed8af)

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

chaow pushed a change to branch fix_vector_ci_bug
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


      at b8ed8af  fix ci bug

This branch includes the following new commits:

     new b8ed8af  fix ci bug

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[iotdb] 01/01: fix ci bug

Posted by ch...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit b8ed8af9a0bf3ca36dac57e4654956e68ea49cba
Author: chaow <xu...@gmail.com>
AuthorDate: Wed Mar 31 17:57:54 2021 +0800

    fix ci bug
---
 .../apache/iotdb/cluster/query/ClusterDataQueryExecutorTest.java    | 6 +++---
 cluster/src/test/resources/logback.xml                              | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/cluster/src/test/java/org/apache/iotdb/cluster/query/ClusterDataQueryExecutorTest.java b/cluster/src/test/java/org/apache/iotdb/cluster/query/ClusterDataQueryExecutorTest.java
index 9c1eeb7..54fee51 100644
--- a/cluster/src/test/java/org/apache/iotdb/cluster/query/ClusterDataQueryExecutorTest.java
+++ b/cluster/src/test/java/org/apache/iotdb/cluster/query/ClusterDataQueryExecutorTest.java
@@ -102,7 +102,7 @@ public class ClusterDataQueryExecutorTest extends BaseQueryTest {
   @Test
   public void testNoFilterWithRedirect() throws StorageEngineException, QueryProcessException {
     RawDataQueryPlan plan = new RawDataQueryPlan();
-    plan.setDeduplicatedPaths(pathList);
+    plan.setDeduplicatedPathsAndUpdate(pathList);
     plan.setDeduplicatedDataTypes(dataTypes);
     plan.setEnableRedirect(true);
     queryExecutor = new ClusterDataQueryExecutor(plan, testMetaMember);
@@ -123,7 +123,7 @@ public class ClusterDataQueryExecutorTest extends BaseQueryTest {
         new SingleSeriesExpression(
             new PartialPath(TestUtils.getTestSeries(0, 0)), ValueFilter.gtEq(5.0));
     RawDataQueryPlan plan = new RawDataQueryPlan();
-    plan.setDeduplicatedPaths(pathList);
+    plan.setDeduplicatedPathsAndUpdate(pathList);
     plan.setDeduplicatedDataTypes(dataTypes);
     plan.setExpression(expression);
     plan.setEnableRedirect(true);
@@ -144,7 +144,7 @@ public class ClusterDataQueryExecutorTest extends BaseQueryTest {
     IExpression expression =
         new GlobalTimeExpression(new AndFilter(TimeFilter.gtEq(5), TimeFilter.ltEq(10)));
     RawDataQueryPlan plan = new RawDataQueryPlan();
-    plan.setDeduplicatedPaths(pathList.subList(0, 1));
+    plan.setDeduplicatedPathsAndUpdate(pathList.subList(0, 1));
     plan.setDeduplicatedDataTypes(dataTypes.subList(0, 1));
     plan.setExpression(expression);
     plan.setEnableRedirect(true);
diff --git a/cluster/src/test/resources/logback.xml b/cluster/src/test/resources/logback.xml
index 31c0be4..b3a321f 100644
--- a/cluster/src/test/resources/logback.xml
+++ b/cluster/src/test/resources/logback.xml
@@ -38,7 +38,7 @@
     <!--    <logger name="org.apache.iotdb.cluster.log.manage.serializable.SyncLogDequeSerializer" level="DEBUG"/>-->
     <!--    <logger name="org.apache.iotdb.cluster.query.reader.RemoteSimpleSeriesReader" level="DEBUG"/>-->
     <logger name="org.apache.thrift.server.TThreadPoolServer" level="ERROR"/>
-    <root level="warn">
+    <root level="debug">
         <appender-ref ref="stdout"/>
     </root>
     <!--    <logger level="info" name="org.apache.iotdb.cluster.log.manage.serializable.SyncLogDequeSerializer"/>-->