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/02/08 14:38:52 UTC

[iotdb] branch NewTsFileV2 updated (e09835c -> e9bb727)

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

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


    from e09835c  fix upgrade npe
     add b793ada  add slides in 2020 (#2615)
     add 8a56871  [Github Issue 2624, 2625]Avoid OOM if user don't close Statement and Session manually (#2629)
     add 517f27f  Avoid using synchronized method in IO Task of flush pipeline (#2628)
     add d01cd9e  fixes document navigation name. (#2627)
     add 967f96b  fix possible NPE during end query process (#2634)
     add 31774ed  remove sonar token; add manual trigger of action.
     add 90a8a49  add github action environment for sonar (#2643)
     add c5d48cf  Add more detailed log for better tracing (#2636)
     add 08eaac9  [C++ Client]Add more detailed walkthrough of Cpp client build to README (#2620)
     add d5a9941  [IOTDB-1091] SDT improvement store last point (#2576)
     add 064cd96  IOTDB-1140 optimize regular data encoding (#2621)
     add 3efdcac  [IOTDB-1091] add linear fill test case for sdt encoding (#2500)
     add cc5ff6f  [IOTDB-1147] Fix the concurrent bug in FlushManager debug logger cause NoSuchElementException e… (#2623)
     add f3262c6  [ISSUE-2585] show devices with storage group (#2475)
     add aa97980  fix last query non cached path bug (#2651)
     add 425b35d  [IOTDB-1149]finish continue print for -e param when set maxPRC<=0 (#2649)
     add ddd2eb8  Remove duplicate method of getDefaultEncoding (#2655)
     add e9bb727  Merge branch 'master' of https://github.com/apache/iotdb into NewTsFileV2

No new revisions were added by this update.

Summary of changes:
 .github/workflows/main-linux.yml                   |   3 +-
 .../antlr4/org/apache/iotdb/db/qp/sql/SqlBase.g4   |   2 +-
 .../java/org/apache/iotdb/cli/AbstractCli.java     |  12 +-
 .../java/org/apache/iotdb/cli/AbstractCliIT.java   |   2 -
 .../java/org/apache/iotdb/cluster/ClientMain.java  |   2 +-
 compile-tools/README.md                            |  27 +-
 docs/Community/Feedback.md                         |   2 +
 docs/Community/Materials.md                        | 132 +++++++---
 docs/UserGuide/Concept/Encoding.md                 |   2 +-
 .../DDL Data Definition Language.md                |  41 ++-
 docs/UserGuide/Operation Manual/SQL Reference.md   |   9 +-
 docs/zh/Community/Feedback.md                      |   4 +-
 docs/zh/Community/Materials.md                     |  95 -------
 docs/zh/UserGuide/Concept/Encoding.md              |   2 +-
 docs/zh/UserGuide/Get Started/Publication.md       |   4 +-
 .../DDL Data Definition Language.md                |  42 +++-
 .../zh/UserGuide/Operation Manual/SQL Reference.md |   9 +-
 .../iotdb/jdbc/AbstractIoTDBJDBCResultSet.java     |   5 +-
 .../java/org/apache/iotdb/jdbc/IoTDBStatement.java |   4 +
 .../resources/conf/iotdb-engine.properties         |   4 +-
 .../org/apache/iotdb/db/conf/IoTDBConfigCheck.java |   9 +
 .../apache/iotdb/db/engine/flush/FlushManager.java |  43 ++--
 .../iotdb/db/engine/flush/MemTableFlushTask.java   |  11 +-
 .../org/apache/iotdb/db/metadata/MManager.java     |  30 +--
 .../java/org/apache/iotdb/db/metadata/MTree.java   |  13 +-
 .../db/qp/logical/sys/ShowDevicesOperator.java     |   9 +
 .../iotdb/db/qp/physical/sys/ShowDevicesPlan.java  |   9 +-
 .../apache/iotdb/db/qp/sql/IoTDBSqlVisitor.java    |   5 +-
 .../iotdb/db/qp/strategy/PhysicalGenerator.java    |   2 +-
 .../iotdb/db/query/control/QueryFileManager.java   |  20 +-
 .../iotdb/db/query/dataset/ShowDevicesDataSet.java |  20 +-
 .../iotdb/db/query/dataset/ShowDevicesResult.java  |  11 +-
 .../dataset/ShowResult.java}                       |  31 ++-
 .../db/query/dataset/ShowTimeSeriesResult.java     |  22 +-
 .../iotdb/db/query/executor/LastQueryExecutor.java |  22 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |  18 +-
 .../org/apache/iotdb/db/utils/SchemaUtils.java     |   1 -
 .../iotdb/db/writelog/io/SingleFileLogReader.java  |   5 +-
 .../iotdb/db/integration/IoTDBAddSubDeviceIT.java  |  42 +++-
 .../iotdb/db/integration/IoTDBCheckConfigIT.java   | 157 ++++++++++++
 .../iotdb/db/integration/IoTDBEncodingIT.java      | 276 +++++++++++++++++++++
 .../iotdb/db/integration/IoTDBMetadataFetchIT.java |  37 +++
 .../iotdb/db/integration/IoTDBSimpleQueryIT.java   | 117 +++++++--
 .../iotdb/db/query/dataset/ListDataSetTest.java    |  21 ++
 .../java/org/apache/iotdb/rpc/IoTDBRpcDataSet.java |   5 +-
 .../apache/iotdb/session/SessionConnection.java    |   4 +-
 .../org/apache/iotdb/session/SessionDataSet.java   |   8 +-
 .../iotdb/session/IoTDBSessionIteratorIT.java      |   1 -
 site/src/main/.vuepress/config.js                  |  10 +-
 .../org/apache/iotdb/tsfile/utils/PublicBAOS.java  |   5 +
 .../iotdb/tsfile/write/chunk/ChunkWriterImpl.java  |  71 +++---
 .../zeppelin/iotdb/IoTDBInterpreterTest.java       |  13 +
 52 files changed, 1113 insertions(+), 338 deletions(-)
 delete mode 100644 docs/zh/Community/Materials.md
 copy tsfile/src/main/java/org/apache/iotdb/tsfile/exception/NullFieldException.java => server/src/main/java/org/apache/iotdb/db/query/dataset/ShowDevicesResult.java (77%)
 copy server/src/main/java/org/apache/iotdb/db/{exception/metadata/DeleteFailedException.java => query/dataset/ShowResult.java} (61%)
 create mode 100644 server/src/test/java/org/apache/iotdb/db/integration/IoTDBCheckConfigIT.java
 create mode 100644 server/src/test/java/org/apache/iotdb/db/integration/IoTDBEncodingIT.java