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/09/05 13:40:11 UTC

[iotdb] branch jira_1450 updated (bb08954 -> 411b51a)

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

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


    from bb08954  Fix compilation error
     add e562445   update design document of data query (#3781)
     add 820101c  change default value for timed flush memtable and timed close tsfile (#3875)
     add d7fd960  Update docs for time partition and auto create metadata (#3878)
     add 79f29f4  [doc] Update some out-of-date content in README and add some time zone usage (#3880)
     add b92a16a  [IOTDB-1601]Add Like and REGEXP statement user guide in DML (#3889)
     add 5c48d3a  [IOTDB-1565]set system to readonly / writable Adaptive cluster (#3885)
     add 11d64b8  Update the QuickStart link in Home page (#3898)
     add 8626336  [IOTDB-1610] Fix TsFileRewriteTool writing incorrect data file (#3896) (#3897)
     add bffb799  Fix website cannot update rel/0.12 documents (#3902)
     add 88cce66  Add auto-create-schema, time partition and dbeaver user guide to the website (#3904)
     add c8dee24  [IOTDB-1534] fix surefire ci by increasing memory (#3899)
     add 9931149  Revert "[IOTDB-1534] fix surefire ci by increasing memory (#3899)" (#3908)
     add adb1cbc  [IOTDB-1562] Fix incorrect exception processing in insertXXX() API (#3758)
     add 411b51a  Merge branch 'master' into jira_1450

No new revisions were added by this update.

Summary of changes:
 README.md                                          |  86 ++++---
 README_ZH.md                                       |  86 ++++---
 RELEASE_NOTES.md                                   |   2 +-
 .../apache/iotdb/cluster/server/ClientServer.java  |   9 +-
 .../apache/iotdb/cluster/utils/PartitionUtils.java |   4 +-
 docs/Download/README.md                            |   8 +-
 docs/SystemDesign/DataQuery/RawDataQuery.md        |  26 +-
 docs/SystemDesign/DataQuery/SeriesReader.md        |  36 ++-
 docs/UserGuide/API/Time-zone.md                    |   6 +
 docs/UserGuide/Appendix/Config-Manual.md           |  81 ++++++
 .../UserGuide/Data-Concept/Auto-Create-MetaData.md | 107 ++++++++
 docs/UserGuide/Data-Concept/Time-Partition.md      |  64 +++++
 .../DML-Data-Manipulation-Language.md              |  74 ++++++
 docs/zh/Download/README.md                         |   6 +-
 docs/zh/SystemDesign/DataQuery/OrderByTimeQuery.md |   2 +-
 docs/zh/SystemDesign/DataQuery/RawDataQuery.md     |  26 +-
 docs/zh/SystemDesign/DataQuery/SeriesReader.md     |  36 ++-
 docs/zh/UserGuide/API/Time-zone.md                 |   8 +-
 docs/zh/UserGuide/Appendix/Config-Manual.md        |  81 ++++++
 .../UserGuide/Data-Concept/Auto-Create-MetaData.md | 107 ++++++++
 docs/zh/UserGuide/Data-Concept/Time-Partition.md   |  64 +++++
 .../DML-Data-Manipulation-Language.md              |  77 ++++++
 .../resources/conf/iotdb-engine.properties         |  24 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |  16 +-
 .../org/apache/iotdb/db/conf/OperationType.java    |  65 +++++
 .../apache/iotdb/db/qp/physical/PhysicalPlan.java  |   7 +-
 .../db/qp/physical/sys/SetSystemModePlan.java      |  33 +++
 .../org/apache/iotdb/db/service/TSServiceImpl.java | 146 ++++++++---
 .../apache/iotdb/db/tools/TsFileRewriteTool.java   |  11 +-
 .../db/tools/upgrade/TsFileOnlineUpgradeTool.java  |   2 +-
 .../aggregation/IoTDBAggregationSmallDataIT.java   |  17 +-
 .../iotdb/db/utils/TsFileRewriteToolTest.java      | 109 ++++++++
 .../apache/iotdb/session/IoTDBSessionSimpleIT.java | 284 ++++++++++++++++++++-
 site/pom.xml                                       |  10 +
 site/src/main/.vuepress/config.js                  |  38 +--
 .../.vuepress/public/img/contributor-avatar/cw.jpg | Bin 163226 -> 163225 bytes
 .../.vuepress/theme/global-components/IoTDB.vue    |   2 +-
 .../.vuepress/theme/global-components/IoTDBZH.vue  |   2 +-
 .../test/java/org/apache/iotdb/db/sql/Cases.java   |  21 ++
 .../iotdb/tsfile/read/TsFileSequenceReader.java    |   4 +
 .../tsfile/v2/read/TsFileSequenceReaderForV2.java  |   4 -
 41 files changed, 1581 insertions(+), 210 deletions(-)
 create mode 100644 docs/UserGuide/Data-Concept/Auto-Create-MetaData.md
 create mode 100644 docs/UserGuide/Data-Concept/Time-Partition.md
 create mode 100644 docs/zh/UserGuide/Data-Concept/Auto-Create-MetaData.md
 create mode 100644 docs/zh/UserGuide/Data-Concept/Time-Partition.md
 create mode 100644 server/src/main/java/org/apache/iotdb/db/conf/OperationType.java