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

[iotdb] branch Vector updated (8c9b82a -> 4ae74ae)

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

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


    from 8c9b82a  [To Vector] Finish the tsfile read module (#2819)
     add 4ae74ae  [PhysicalPlan] Add PhysicalPlan

No new revisions were added by this update.

Summary of changes:
 .../apache/iotdb/db/metadata/MLogTxtWriter.java    |  32 ++
 .../org/apache/iotdb/db/metadata/MManager.java     |   8 +
 .../iotdb/db/metadata/MetadataOperationType.java   |   1 +
 .../iotdb/db/metadata/logfile/MLogWriter.java      |   8 +
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  13 +
 .../org/apache/iotdb/db/qp/logical/Operator.java   |   1 +
 .../apache/iotdb/db/qp/physical/PhysicalPlan.java  |   5 +
 .../physical/sys/CreateAlignedTimeSeriesPlan.java  | 249 ++++++++++++++++
 .../org/apache/iotdb/db/service/TSServiceImpl.java |  54 ++++
 .../org/apache/iotdb/db/tools/mlog/MLogParser.java |   4 +
 .../db/qp/physical/PhysicalPlanSerializeTest.java  |  32 ++
 .../iotdb/db/qp/physical/PhysicalPlanTest.java     |  14 +
 .../java/org/apache/iotdb/session/Session.java     |  33 +++
 .../apache/iotdb/session/SessionConnection.java    |  20 ++
 thrift/src/main/thrift/rpc.thrift                  |  12 +
 .../tsfile/write/schema/MeasurementSchema.java     |  11 +-
 .../write/schema/VectorMeasurementSchema.java      | 329 +++++++++++++++++++++
 17 files changed, 820 insertions(+), 6 deletions(-)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/qp/physical/sys/CreateAlignedTimeSeriesPlan.java
 create mode 100644 tsfile/src/main/java/org/apache/iotdb/tsfile/write/schema/VectorMeasurementSchema.java