You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ja...@apache.org on 2022/03/29 10:58:17 UTC

[iotdb] branch master updated (4050490 -> 9c5fdd5)

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

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


    from 4050490  Connect the Query Plan stage from SQL to DistributionPlan with UT and mock interfaces (#5364)
     add 9c5fdd5  [IOTDB-2768] Add UT for SeriesScanOperator, TimeJoinOperator and LimitOperator (#5365)

No new revisions were added by this update.

Summary of changes:
 .../db/mpp/execution/FragmentInstanceContext.java  |   4 +
 .../db/mpp/operator/process/LimitOperator.java     |   2 +-
 .../db/mpp/sql/planner/LocalExecutionPlanner.java  |  22 ++-
 .../planner/plan/node/source/SeriesScanNode.java   |  20 ++-
 .../iotdb/db/mpp/operator/LimitOperatorTest.java   | 170 +++++++++++++++++++++
 .../db/mpp/operator/SeriesScanOperatorTest.java    | 125 +++++++++++++++
 .../db/mpp/operator/TimeJoinOperatorTest.java      | 156 +++++++++++++++++++
 .../reader/series/SeriesAggregateReaderTest.java   |   3 +-
 .../reader/series/SeriesReaderByTimestampTest.java |   3 +-
 .../db/query/reader/series/SeriesReaderTest.java   |   3 +-
 .../query/reader/series/SeriesReaderTestUtil.java  |  27 ++--
 11 files changed, 512 insertions(+), 23 deletions(-)
 create mode 100644 server/src/test/java/org/apache/iotdb/db/mpp/operator/LimitOperatorTest.java
 create mode 100644 server/src/test/java/org/apache/iotdb/db/mpp/operator/SeriesScanOperatorTest.java
 create mode 100644 server/src/test/java/org/apache/iotdb/db/mpp/operator/TimeJoinOperatorTest.java