You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2020/07/09 06:37:02 UTC

[incubator-iotdb] branch master updated (36d524d -> 5db19a9)

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

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


    from 36d524d  [IOTDB-627]Support range deletion for timeseries (#1400)
     add 5db19a9  [IOTDB-774]Fix "show timeseries" OOM problem (#1470)

No new revisions were added by this update.

Summary of changes:
 docs/SystemDesign/SchemaManager/SchemaManager.md   |  45 ++++++
 .../zh/SystemDesign/SchemaManager/SchemaManager.md |  41 ++++++
 .../org/apache/iotdb/db/metadata/MManager.java     |  15 +-
 .../java/org/apache/iotdb/db/metadata/MTree.java   |  52 +++----
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  | 153 +++++++++------------
 .../db/qp/physical/sys/ShowTimeSeriesPlan.java     |  26 ++--
 .../db/query/dataset/ShowTimeseriesDataSet.java    |  80 +++++++++++
 .../org/apache/iotdb/db/service/TSServiceImpl.java |  40 +++++-
 .../java/org/apache/iotdb/db/utils/QueryUtils.java | 122 ++++++++++++++--
 .../iotdb/db/integration/IoTDBSimpleQueryIT.java   | 151 ++++++++++++++++++++
 10 files changed, 595 insertions(+), 130 deletions(-)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/query/dataset/ShowTimeseriesDataSet.java