You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ja...@apache.org on 2021/01/22 01:26:44 UTC

[iotdb] branch NewTsFileV2 updated (c9de562 -> 8f0c32b)

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

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


    from c9de562  [To NewTsFileV2] Add tests for getMeasurementChunkMetadataListMapIterator (#2542)
     add bc91dd5  add timeout Log (#2537)
     add 6f632e2  Fix SessionDataSet bug when reading value buffer for "select last" (#2535)
     add 1000dd6  clarify sdt doc (docs/UserGuide/Concept/SDT.md) (#2469)
     add bdc596f  Fix sync last query (#2540)
     add adb5ea8  Support brackets with number in timeseries path (#2503)
     add 56a2353  first chunkmetadata should be consumed first (#2547)
     add 8610954  Add a specification of the character that supported in time series name (#2501)
     add 6953b9e  [IOTDB-1077] Add python test and insert one device interface (#2539)
     add 32d91c1  Use FileOutputStream instead of FileChannel to avoid a potential resource leak in synchronous service (#2408)
     add 7416dcf  [ISSUE-2545, 2549] Fix unseq merge end time bug (#2544)
     add 2b83c35  disable travis (#2551)
     add 4f8c41f  Change "Not support" to "Does not support" in error message of IOTDBConnection.java (#2281)
     new 8f0c32b  Merge remote-tracking branch 'origin/master' into NewTsFileV2

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:
 .travis.yml                                        | 192 ---------------------
 .../antlr4/org/apache/iotdb/db/qp/sql/SqlBase.g4   |   4 +-
 .../client-cpp-example/src/SessionExample.cpp      |  13 ++
 client-cpp/src/main/Session.cpp                    |  18 +-
 client-cpp/src/main/Session.h                      |   4 +
 client-cpp/src/test/cpp/sessionIT.cpp              |  22 +++
 client-py/readme.md                                |   6 +
 client-py/src/SessionExample.py                    |  14 +-
 .../src/{SessionExample.py => SessionTest.py}      |  79 +++++++--
 client-py/src/iotdb/Session.py                     | 143 +++++++++++++--
 client-py/src/iotdb/utils/IoTDBRpcDataSet.py       |   5 +-
 .../Concept/Data Model and Terminology.md          |  15 +-
 docs/UserGuide/Concept/SDT.md                      |  21 ++-
 .../DDL Data Definition Language.md                |   3 +
 docs/UserGuide/Operation Manual/SQL Reference.md   |  10 +-
 .../Concept/Data Model and Terminology.md          |  16 +-
 docs/zh/UserGuide/Concept/SDT.md                   |  17 +-
 .../DDL Data Definition Language.md                |   4 +
 .../zh/UserGuide/Operation Manual/SQL Reference.md |  10 +-
 .../main/java/org/apache/iotdb/SessionExample.java |  12 +-
 .../org/apache/iotdb/jdbc/IoTDBConnection.java     |  60 +++----
 .../iotdb/db/engine/merge/task/MergeFileTask.java  |  15 +-
 .../engine/storagegroup/StorageGroupProcessor.java |  33 ++++
 .../iotdb/db/query/control/QueryTimeManager.java   |   6 +-
 .../iotdb/db/query/reader/series/SeriesReader.java |   8 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |  11 +-
 .../db/sync/receiver/transfer/SyncServiceImpl.java |  18 +-
 .../java/org/apache/iotdb/db/utils/MergeUtils.java |   2 +-
 .../iotdb/db/engine/merge/MergeTaskTest.java       |  66 ++++---
 .../iotdb/db/integration/IoTDBMergeTest.java       |  51 +++++-
 .../iotdb/db/integration/IoTDBSimpleQueryIT.java   |   6 +-
 .../iotdb/db/qp/physical/PhysicalPlanTest.java     |   3 +-
 .../iotdb/tsfile/encoding/encoder/SDTEncoder.java  |  72 ++++----
 .../iotdb/tsfile/write/chunk/ChunkWriterImpl.java  |  10 +-
 34 files changed, 580 insertions(+), 389 deletions(-)
 delete mode 100644 .travis.yml
 copy client-py/src/{SessionExample.py => SessionTest.py} (61%)


[iotdb] 01/01: Merge remote-tracking branch 'origin/master' into NewTsFileV2

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

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

commit 8f0c32b42894b6b9d3a7a4259e4dc799de5b1015
Merge: c9de562 4f8c41f
Author: JackieTien97 <Ja...@foxmail.com>
AuthorDate: Fri Jan 22 09:26:11 2021 +0800

    Merge remote-tracking branch 'origin/master' into NewTsFileV2

 .travis.yml                                        | 192 ---------------------
 .../antlr4/org/apache/iotdb/db/qp/sql/SqlBase.g4   |   4 +-
 .../client-cpp-example/src/SessionExample.cpp      |  13 ++
 client-cpp/src/main/Session.cpp                    |  18 +-
 client-cpp/src/main/Session.h                      |   4 +
 client-cpp/src/test/cpp/sessionIT.cpp              |  22 +++
 client-py/readme.md                                |   6 +
 client-py/src/SessionExample.py                    |  14 +-
 .../src/{SessionExample.py => SessionTest.py}      |  79 +++++++--
 client-py/src/iotdb/Session.py                     | 143 +++++++++++++--
 client-py/src/iotdb/utils/IoTDBRpcDataSet.py       |   5 +-
 .../Concept/Data Model and Terminology.md          |  15 +-
 docs/UserGuide/Concept/SDT.md                      |  21 ++-
 .../DDL Data Definition Language.md                |   3 +
 docs/UserGuide/Operation Manual/SQL Reference.md   |  10 +-
 .../Concept/Data Model and Terminology.md          |  16 +-
 docs/zh/UserGuide/Concept/SDT.md                   |  17 +-
 .../DDL Data Definition Language.md                |   4 +
 .../zh/UserGuide/Operation Manual/SQL Reference.md |  10 +-
 .../main/java/org/apache/iotdb/SessionExample.java |  12 +-
 .../org/apache/iotdb/jdbc/IoTDBConnection.java     |  60 +++----
 .../iotdb/db/engine/merge/task/MergeFileTask.java  |  15 +-
 .../engine/storagegroup/StorageGroupProcessor.java |  33 ++++
 .../iotdb/db/query/control/QueryTimeManager.java   |   6 +-
 .../iotdb/db/query/reader/series/SeriesReader.java |   8 +-
 .../org/apache/iotdb/db/service/TSServiceImpl.java |  11 +-
 .../db/sync/receiver/transfer/SyncServiceImpl.java |  18 +-
 .../java/org/apache/iotdb/db/utils/MergeUtils.java |   2 +-
 .../iotdb/db/engine/merge/MergeTaskTest.java       |  66 ++++---
 .../iotdb/db/integration/IoTDBMergeTest.java       |  51 +++++-
 .../iotdb/db/integration/IoTDBSimpleQueryIT.java   |   6 +-
 .../iotdb/db/qp/physical/PhysicalPlanTest.java     |   3 +-
 .../iotdb/tsfile/encoding/encoder/SDTEncoder.java  |  72 ++++----
 .../iotdb/tsfile/write/chunk/ChunkWriterImpl.java  |  10 +-
 34 files changed, 580 insertions(+), 389 deletions(-)