This is an automated email from the ASF dual-hosted git repository.
haonan pushed a change to branch KF
in repository https://gitbox.apache.org/repos/asf/iotdb.git.
from ebadece Merge pull request #1794 from SteveYurongSu/KF
add 79fe721 remove some redundant code (#1778)
add 52b087f [IOTDB-929] Update show timeseries information in readme
(#1786)
add c916da9 [IOTDB-934] Update TsFile structure graph (#1797)
add 1eb3cbe remove incubating or incubator word
add a12c90e revert travis.xml as sonarcloud does not rename iotdb repo
add 665df9b revert travis.xml as sonarcloud does not rename iotdb repo
add af08781 Update docs/zh/UserGuide/Get Started/Frequently asked
questions.md
add efbf93a Update docs/zh/SystemDesign/TsFile/Format.md
add 1cb82ba Update docs/UserGuide/Server/Download.md
add 45b803f Update README.md
add 9f44105 remove incubating or incubator word (#1790)
add c1cf736 [IOTDB-934] Add statistics description in TsFile document
(#1798)
add 7d63289 remove "incubator" word in all urls (#1802)
add f82f180 delete some useless type transfer while deserializing and
serializing MeasurementMNode (#1803)
add 3976682 fix progressBar print problem (#1805)
add 4b5e66f fix homepage link (#1806)
add 52ffce3 [IOTDB-920] Disable insert row thats only contains
time/timestamp column (#1774)
add 2f71cd7 [IOTDB-922] Int and Long can convert to each other in
ResultSet (#1775)
add 74c4aa4 Merge branch 'master' into KF
No new revisions were added by this update.
Summary of changes:
README.md | 50 ++++-----
README_ZH.md | 42 +++----
.../org/apache/iotdb/db/qp/strategy/SqlBase.g4 | 6 +-
.../tests/tools/importCsv/AbstractScript.java | 4 +-
docker/src/main/Dockerfile | 6 +-
docker/src/main/Dockerfile-0.8.1 | 4 +-
docker/src/main/Dockerfile-0.9.0 | 4 +-
docker/src/main/Dockerfile-0.9.1 | 4 +-
docker/src/main/Dockerfile-0.9.1-jre8 | 4 +-
docs/Community/Community-Powered By.md | 2 +-
docs/Community/Feedback.md | 4 +-
docs/Development/ContributeGuide.md | 2 +-
docs/Development/HowToCommit.md | 22 ++--
docs/Development/VoteRelease.md | 4 +-
docs/Download/README.md | 46 ++++----
docs/SystemDesign/TsFile/Format.md | 29 +++--
docs/UserGuide/Client/Programming - TsFile API.md | 4 +-
docs/UserGuide/Ecosystem Integration/Grafana.md | 8 +-
.../UserGuide/Ecosystem Integration/Hive TsFile.md | 8 +-
.../Ecosystem Integration/MapReduce TsFile.md | 6 +-
.../Ecosystem Integration/Spark TsFile.md | 6 +-
.../Get Started/Frequently asked questions.md | 8 +-
docs/UserGuide/Get Started/QuickStart.md | 4 +-
docs/UserGuide/Server/Docker Image.md | 8 +-
docs/UserGuide/Server/Download.md | 12 +-
docs/zh/Community/Community-Powered By.md | 2 +-
docs/zh/Community/Feedback.md | 4 +-
docs/zh/Development/ContributeGuide.md | 2 +-
docs/zh/Development/HowToCommit.md | 20 ++--
docs/zh/Development/VoteRelease.md | 4 +-
docs/zh/Download/README.md | 46 ++++----
docs/zh/SystemDesign/TsFile/Format.md | 25 +++--
docs/zh/UserGuide/Client/Command Line Interface.md | 2 +-
.../UserGuide/Client/Programming - TsFile API.md | 4 +-
docs/zh/UserGuide/Ecosystem Integration/Grafana.md | 8 +-
.../UserGuide/Ecosystem Integration/Hive TsFile.md | 12 +-
.../Ecosystem Integration/MapReduce TsFile.md | 6 +-
.../Ecosystem Integration/Spark TsFile.md | 6 +-
.../Get Started/Frequently asked questions.md | 10 +-
docs/zh/UserGuide/Get Started/QuickStart.md | 4 +-
docs/zh/UserGuide/Server/Docker Image.md | 10 +-
docs/zh/UserGuide/Server/Download.md | 2 +-
example/tsfile/readme.md | 2 +-
pom.xml | 10 +-
.../java/org/apache/iotdb/db/metadata/MTree.java | 9 +-
.../iotdb/db/metadata/mnode/MeasurementMNode.java | 13 +--
.../apache/iotdb/db/qp/executor/PlanExecutor.java | 8 +-
.../iotdb/db/writelog/recover/LogReplayer.java | 19 +---
.../apache/iotdb/db/integration/IOTDBInsertIT.java | 123 ++++++++++++++++++++
.../iotdb/db/integration/IoTDBResultSetIT.java | 124 +++++++++++++++++++++
site/README-zh.md | 6 +-
site/README.md | 2 +
site/pom.xml | 20 ++--
site/src/main/.vuepress/config.js | 2 +-
site/src/main/.vuepress/theme/components/Page.vue | 2 +-
.../.vuepress/theme/global-components/IoTDB.vue | 10 +-
.../.vuepress/theme/global-components/IoTDBZH.vue | 2 +-
site/src/main/deploy.js | 2 +-
site/src/main/package.json | 2 +-
tools/common.sh | 8 +-
tools/download_staged_release.sh | 4 +-
.../file/metadata/enums/CompressionType.java | 99 +++-------------
.../tsfile/file/metadata/enums/TSDataType.java | 53 +++------
.../tsfile/file/metadata/enums/TSEncoding.java | 62 +++--------
.../org/apache/iotdb/tsfile/utils/BytesUtils.java | 21 +++-
.../tsfile/write/schema/MeasurementSchema.java | 34 +++---
66 files changed, 626 insertions(+), 475 deletions(-)
create mode 100644
server/src/test/java/org/apache/iotdb/db/integration/IOTDBInsertIT.java
create mode 100644
server/src/test/java/org/apache/iotdb/db/integration/IoTDBResultSetIT.java