You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by xu...@apache.org on 2021/03/14 01:53:25 UTC

[iotdb] branch Vector updated (1b9d1f2 -> 6fed4ed)

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

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


    from 1b9d1f2  Merge branch 'master' into Vector
     add 19e1aba  device template
     add 6767feb  Merge branch 'Vector' of https://github.com/apache/iotdb into Vector
     add 6fed4ed  update template

No new revisions were added by this update.

Summary of changes:
 .../org/apache/iotdb/db/metadata/MManager.java     | 10 +++
 .../iotdb/db/metadata/template/Template.java       | 69 +++++++++++++++++++
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  | 26 ++++++++
 .../org/apache/iotdb/db/qp/logical/Operator.java   |  4 +-
 .../db/qp/physical/crud/CreateTemplatePlan.java    | 77 ++++++++++++++++++++++
 .../db/qp/physical/crud/SetDeviceTemplatePlan.java | 23 +++++++
 .../org/apache/iotdb/db/service/TSServiceImpl.java | 77 ++++++++++++++++++++++
 .../java/org/apache/iotdb/session/Session.java     | 54 +++++++++++++++
 .../apache/iotdb/session/SessionConnection.java    | 40 +++++++++++
 .../java/org/apache/iotdb/session/SessionUT.java   | 47 +++++++++++++
 thrift/src/main/thrift/rpc.thrift                  | 19 ++++++
 11 files changed, 445 insertions(+), 1 deletion(-)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/metadata/template/Template.java
 create mode 100644 server/src/main/java/org/apache/iotdb/db/qp/physical/crud/CreateTemplatePlan.java
 create mode 100644 server/src/main/java/org/apache/iotdb/db/qp/physical/crud/SetDeviceTemplatePlan.java