You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2020/12/29 12:59:34 UTC

[iotdb] branch rel/0.11 updated (093a9e5 -> e22619b)

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

haonan pushed a change to branch rel/0.11
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


    from 093a9e5  [To rel/0.11] compaction not block flush (#2364)
     add e22619b  [IOTDB-1077][rel/0.11]add insertOneDeviceRecords API in java session (#2321)

No new revisions were added by this update.

Summary of changes:
 docs/UserGuide/Client/Programming - Native API.md  |  19 +++
 .../UserGuide/Client/Programming - Native API.md   |  14 ++
 .../org/apache/iotdb/db/engine/StorageEngine.java  |  18 +++
 .../engine/storagegroup/StorageGroupProcessor.java |  44 ++++++
 .../apache/iotdb/db/qp/executor/IPlanExecutor.java |   8 ++
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  59 +++++++++
 .../org/apache/iotdb/db/qp/logical/Operator.java   |   3 +-
 .../apache/iotdb/db/qp/physical/PhysicalPlan.java  |   3 +-
 .../iotdb/db/qp/physical/crud/InsertRowPlan.java   |  31 +++++
 .../physical/crud/InsertRowsOfOneDevicePlan.java   | 147 +++++++++++++++++++++
 .../org/apache/iotdb/db/service/TSServiceImpl.java |  67 +++++++---
 .../java/org/apache/iotdb/session/Session.java     | 129 +++++++++++++++++-
 .../org/apache/iotdb/session/pool/SessionPool.java |  57 ++++++++
 .../iotdb/session/IoTDBSessionComplexIT.java       |   1 +
 .../apache/iotdb/session/IoTDBSessionSimpleIT.java | 130 ++++++++++++++++++
 thrift/src/main/thrift/rpc.thrift                  |  12 ++
 16 files changed, 717 insertions(+), 25 deletions(-)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/qp/physical/crud/InsertRowsOfOneDevicePlan.java