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 2021/08/17 05:37:54 UTC

[iotdb] branch set_read_only updated (39b205d -> 0b73822)

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

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


    from 39b205d  spotless
     add 6f77c15  [IOTDB-1539] [To rel/0.12] Fix delete operation with value filter is abnormal (#3747)
     add ea97b8a  [IOTDB-1567] fix some WAL and SG processor threadpools having the same JMX name (#3748)
     add 1a787f8  Modify the comparsion way of enum type (#3750)
     add 349656c  [IOTDB-1566] [To rel/0.12] Delete the configuration:concurrent_writing_time_partition (#3749)
     add c8455e5  Fix issues of blocking heartbeat broadcast and vote requesting caused by client reconnection (#3751) (#3757)
     add 04a51b8  [IOTDB-1561][To rel/0.12]Fix problems caused by keywords (#3756)
     add 7430fdc  [IOTDB-1519][To rel/0.12] add metadata checking option and change grammar for loading tsfile (#3754)
     new 0b73822  merge

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASE_NOTES.md                                   |   2 +
 .../antlr4/org/apache/iotdb/db/qp/sql/SqlBase.g4   |  31 +--
 .../cluster/server/heartbeat/HeartbeatThread.java  |  34 ++--
 .../DML-Data-Manipulation-Language.md              |   4 +-
 .../UserGuide/System-Tools/Load-External-Tsfile.md |  32 +++-
 .../DML-Data-Manipulation-Language.md              |   4 +-
 .../UserGuide/System-Tools/Load-External-Tsfile.md |  56 +++---
 pom.xml                                            |   4 +-
 .../resources/conf/iotdb-engine.properties         |   2 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  10 +-
 .../engine/storagegroup/StorageGroupProcessor.java | 210 +++++++++++----------
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  36 ++++
 .../db/qp/logical/crud/BasicFunctionOperator.java  |   2 +-
 .../iotdb/db/qp/logical/sys/LoadFilesOperator.java |  21 ++-
 .../iotdb/db/qp/physical/sys/OperateFilePlan.java  |  23 ++-
 .../apache/iotdb/db/qp/sql/IoTDBSqlVisitor.java    |  68 +++++--
 .../iotdb/db/qp/strategy/PhysicalGenerator.java    |   3 +-
 .../db/writelog/node/ExclusiveWriteLogNode.java    |   4 +-
 .../iotdb/db/integration/IoTDBDeletionIT.java      |  81 ++++++++
 .../apache/iotdb/db/integration/IoTDBFillIT.java   |   2 +-
 .../{IoTDBTracingIT.java => IoTDBJMXTest.java}     |  36 ++--
 .../db/integration/IoTDBLoadExternalTsfileIT.java  | 121 +++++++++++-
 .../iotdb/db/qp/physical/PhysicalPlanTest.java     |  42 ++++-
 .../iotdb/db/utils/TsFileRewriteToolTest.java      |   4 +-
 24 files changed, 599 insertions(+), 233 deletions(-)
 copy server/src/test/java/org/apache/iotdb/db/integration/{IoTDBTracingIT.java => IoTDBJMXTest.java} (64%)

[iotdb] 01/01: merge

Posted by ha...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch set_read_only
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit 0b738224bc0f3fbfb2ce5897e6c6f85a257794bf
Merge: 39b205d 7430fdc
Author: HTHou <hh...@outlook.com>
AuthorDate: Tue Aug 17 13:37:23 2021 +0800

    merge

 RELEASE_NOTES.md                                   |   2 +
 .../antlr4/org/apache/iotdb/db/qp/sql/SqlBase.g4   |  31 +--
 .../cluster/server/heartbeat/HeartbeatThread.java  |  34 ++--
 .../DML-Data-Manipulation-Language.md              |   4 +-
 .../UserGuide/System-Tools/Load-External-Tsfile.md |  32 +++-
 .../DML-Data-Manipulation-Language.md              |   4 +-
 .../UserGuide/System-Tools/Load-External-Tsfile.md |  56 +++---
 pom.xml                                            |   4 +-
 .../resources/conf/iotdb-engine.properties         |   2 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  10 +-
 .../engine/storagegroup/StorageGroupProcessor.java | 210 +++++++++++----------
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  36 ++++
 .../db/qp/logical/crud/BasicFunctionOperator.java  |   2 +-
 .../iotdb/db/qp/logical/sys/LoadFilesOperator.java |  21 ++-
 .../iotdb/db/qp/physical/sys/OperateFilePlan.java  |  23 ++-
 .../apache/iotdb/db/qp/sql/IoTDBSqlVisitor.java    |  68 +++++--
 .../iotdb/db/qp/strategy/PhysicalGenerator.java    |   3 +-
 .../db/writelog/node/ExclusiveWriteLogNode.java    |   4 +-
 .../iotdb/db/integration/IoTDBDeletionIT.java      |  81 ++++++++
 .../apache/iotdb/db/integration/IoTDBFillIT.java   |   2 +-
 .../apache/iotdb/db/integration/IoTDBJMXTest.java  |  62 ++++++
 .../db/integration/IoTDBLoadExternalTsfileIT.java  | 121 +++++++++++-
 .../iotdb/db/qp/physical/PhysicalPlanTest.java     |  42 ++++-
 .../iotdb/db/utils/TsFileRewriteToolTest.java      |   4 +-
 24 files changed, 647 insertions(+), 211 deletions(-)