You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by lt...@apache.org on 2019/04/22 13:28:13 UTC

[incubator-iotdb] branch cluster_read updated (7911c87 -> 2cb1b4c)

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

lta pushed a change to branch cluster_read
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


    from 7911c87  update remote unit test
     new 7ee1cf7  fix a serve bug
     new 3ea4518  add rpc manager ut and fix some bugs
     new 2cb1b4c  add ut of query utils

The 1798 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.


Summary of changes:
 .../cluster/query/executor/ClusterQueryRouter.java |   2 +
 .../cluster/query/expression/TrueExpression.java   |   5 +
 .../coordinatornode/ClusterRpcQueryManager.java    |  15 +-
 .../ClusterRpcSingleQueryManager.java              |  38 ++-
 .../coordinatornode/IClusterRpcQueryManager.java   |   2 +-
 .../IClusterRpcSingleQueryManager.java             |   3 +-
 .../iotdb/cluster/query/utils/ExpressionUtils.java |   8 +-
 .../query/utils/QueryPlanPartitionUtils.java       |   2 +-
 .../cluster/service/TSServiceClusterImpl.java      |   3 +-
 .../iotdb/cluster/utils/QPExecutorUtils.java       |  10 +
 .../integration/IoTDBMetadataFetchRemoteIT.java    |  28 +-
 .../query/manager/ClusterRpcManagerTest.java       | 354 +++++++++++++++++++++
 .../cluster/query/utils/ExpressionUtilsTest.java   | 242 ++++++++++++++
 .../query/utils/QueryPlanPartitionUtilsTest.java   | 343 ++++++++++++++++++++
 .../tsfile/read/expression/IBinaryExpression.java  |   4 +
 .../read/expression/impl/BinaryExpression.java     |  20 ++
 16 files changed, 1039 insertions(+), 40 deletions(-)
 create mode 100644 cluster/src/test/java/org/apache/iotdb/cluster/query/manager/ClusterRpcManagerTest.java
 create mode 100644 cluster/src/test/java/org/apache/iotdb/cluster/query/utils/ExpressionUtilsTest.java
 create mode 100644 cluster/src/test/java/org/apache/iotdb/cluster/query/utils/QueryPlanPartitionUtilsTest.java