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/12/01 11:43:07 UTC

[iotdb] branch master updated (d242932 -> 18bb46a)

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/iotdb.git.


    from d242932  Update compaction level list delete (#2152)
     add 18bb46a  [IOTDB-890] SDT implementation (#2087)

No new revisions were added by this update.

Summary of changes:
 .../antlr4/org/apache/iotdb/db/qp/sql/SqlBase.g4   |   5 -
 docs/UserGuide/Concept/SDT.md                      |  45 +++
 docs/UserGuide/Operation Manual/SQL Reference.md   |   8 +
 .../zh/UserGuide/Concept/SDT.md                    |  24 +-
 .../zh/UserGuide/Operation Manual/SQL Reference.md |   8 +
 .../main/java/org/apache/iotdb/SessionExample.java |  14 +
 .../engine/compaction/utils/CompactionUtils.java   |   2 +-
 .../db/qp/physical/sys/CreateTimeSeriesPlan.java   |   6 +-
 .../iotdb/db/integration/IoTDBSimpleQueryIT.java   | 379 ++++++++++++++++-
 site/src/main/.vuepress/config.js                  |   2 +
 .../iotdb/tsfile/encoding/encoder/SDTEncoder.java  | 448 +++++++++++++++++++++
 .../iotdb/tsfile/write/chunk/ChunkWriterImpl.java  | 121 +++++-
 .../iotdb/tsfile/encoding/SDTEncoderTest.java      | 176 ++++++++
 13 files changed, 1214 insertions(+), 24 deletions(-)
 create mode 100644 docs/UserGuide/Concept/SDT.md
 copy server/file-changelists/role-changelist.md => docs/zh/UserGuide/Concept/SDT.md (53%)
 create mode 100644 tsfile/src/main/java/org/apache/iotdb/tsfile/encoding/encoder/SDTEncoder.java
 create mode 100644 tsfile/src/test/java/org/apache/iotdb/tsfile/encoding/SDTEncoderTest.java