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 2020/04/17 15:03:18 UTC

[incubator-iotdb] branch tag_manage updated (a0ee5ad -> 431d6a4)

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

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


    from a0ee5ad  finish the tag persistence and delete operation
     add 431d6a4  basically ok

No new revisions were added by this update.

Summary of changes:
 .../org/apache/iotdb/db/qp/strategy/SqlBase.g4     |  14 +-
 .../org/apache/iotdb/db/conf/IoTDBConstant.java    |   1 +
 .../metadata/AliasAlreadyExistException.java       |  13 +
 .../org/apache/iotdb/db/metadata/MLogWriter.java   |   2 +-
 .../org/apache/iotdb/db/metadata/MManager.java     | 110 ++-
 .../java/org/apache/iotdb/db/metadata/MTree.java   |  17 +-
 .../apache/iotdb/db/metadata/mnode/LeafMNode.java  |   2 +-
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  | 136 ++--
 .../qp/logical/sys/CreateTimeSeriesOperator.java   |  13 +-
 .../db/qp/logical/sys/ShowTimeSeriesOperator.java  |  27 +
 .../db/qp/physical/sys/ShowTimeSeriesPlan.java     |  20 +-
 .../iotdb/db/qp/strategy/LogicalGenerator.java     |  32 +
 .../iotdb/db/qp/strategy/PhysicalGenerator.java    |   6 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |   9 +-
 .../iotdb/db/engine/MetadataManagerHelper.java     |   4 +-
 .../db/integration/IoTDBLoadExternalTsfileIT.java  |  21 +-
 .../iotdb/db/integration/IoTDBMetadataFetchIT.java |  18 +-
 .../apache/iotdb/db/integration/IoTDBTagIT.java    | 794 +++++++++++++++++++++
 .../org/apache/iotdb/db/metadata/MTreeTest.java    |  84 ++-
 .../apache/iotdb/db/qp/plan/PhysicalPlanTest.java  |   4 +-
 .../db/sync/receiver/load/FileLoaderTest.java      |  22 +-
 .../recover/SyncReceiverLogAnalyzerTest.java       |  26 +-
 service-rpc/rpc-changelist.md                      |   2 +-
 service-rpc/src/main/thrift/rpc.thrift             |   7 +-
 24 files changed, 1230 insertions(+), 154 deletions(-)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/exception/metadata/AliasAlreadyExistException.java
 create mode 100644 server/src/test/java/org/apache/iotdb/db/integration/IoTDBTagIT.java