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

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


 discard 6b18d42  add comments
 discard b685915  fix path bug
 discard b45b387  fix some ut
 discard a7ea6fc  fix sync bug for tsfiles's directory changed by vitural 
storage group
     add 93a0a2a  Comment out pre-start customizations debugging message
     add 660a109  Merge pull request #2570 from 
neuyilan/apache_master_0125_comment_out_debug_pre_start_codes
     add bd1a867  [IOTDB-1129] Correct `calculateLength` logic according New 
TsFile Format for 0.12 (#2584)
     add 0eba627  IOTDB-1126 unseq tsfile delete due to merge (#2577)
     add 0b95436  [IOTDB-1091] add illegal parameter exception for sdt when 
creating timeseries (#2543)
     add 861b437  [ISSUE-2312] Fix windows Chinese encoding bug
     add 2957859  [ISSUE-2573] Create timeseries root.sg.d1\n.s1 should be 
disabled using native session api (#2578)
     add 20b43bb  disable the merge task in PullSnapshotTaskTest (#2583)
     add 9d88a8e  [C++ Client] remove compiling boost for compling client-cpp 
module (#2509)
     add 409a08f  fix sync bug for tsfiles's directory changed by vitural 
storage group
     add 567183d  fix some ut
     add d783479  fix path bug
     add 4148a21  add comments
     add 4a1aea6  skipTests when mvn install for cross-tests

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (6b18d42)
            \
             N -- N -- N   refs/heads/fix_sync_bug (4a1aea6)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/client.yml                       | 100 ++++++++++++++
 .github/workflows/main-ci.yml                      |  16 +--
 client-cpp/README.md                               |  31 +++++
 client-cpp/pom.xml                                 |  41 ++++--
 client-cpp/src/assembly/client-cpp.xml             |  16 +--
 client-cpp/src/main/CMakeLists.txt                 |  22 +++-
 client-cpp/src/main/Session.h                      |   1 +
 client-cpp/src/test/CMakeLists.txt                 |  40 ++++--
 .../java/org/apache/iotdb/cluster/ClusterMain.java |   4 +-
 .../cluster/log/snapshot/PullSnapshotTaskTest.java |  19 ++-
 compile-tools/README.md                            |  85 +++++++-----
 compile-tools/boost/pom.xml                        | 145 ---------------------
 compile-tools/boost/src/assembly/bundle.xml        |  35 -----
 compile-tools/pom.xml                              |   7 +-
 compile-tools/thrift/pom.xml                       |  51 ++------
 cross-tests/pom.xml                                |  28 ++++
 .../client-cpp-example/README.md                   |  31 +++--
 {client-cpp => example}/client-cpp-example/pom.xml |  12 +-
 .../client-cpp-example/src/CMakeLists.txt          |  19 ++-
 .../client-cpp-example/src/SessionExample.cpp      |   0
 pom.xml                                            |   9 +-
 .../src/assembly/resources/sbin/start-server.bat   |   4 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |   7 +-
 .../org/apache/iotdb/db/conf/IoTDBConstant.java    |   7 +
 .../db/engine/merge/task/MergeMultiChunkTask.java  |   1 +
 .../iotdb/db/engine/merge/task/MergeTask.java      |   5 +
 .../engine/storagegroup/StorageGroupProcessor.java |  41 ++++++
 ...n.java => IllegalParameterOfPathException.java} |  10 +-
 .../java/org/apache/iotdb/db/metadata/MTree.java   |  67 +++++++++-
 .../apache/iotdb/db/qp/executor/PlanExecutor.java  |  10 +-
 .../db/sync/sender/manage/ISyncFileManager.java    |   6 +-
 .../db/sync/sender/manage/SyncFileManager.java     |  30 ++---
 .../iotdb/db/sync/sender/transfer/SyncClient.java  |   4 +-
 .../iotdb/db/engine/merge/MergeTaskTest.java       |  28 ++++
 .../storagegroup/StorageGroupProcessorTest.java    |  27 ++++
 .../iotdb/db/integration/IoTDBDeletionIT.java      |   1 -
 .../db/integration/IoTDBRemovePartitionIT.java     | 103 +++++++++++++++
 .../iotdb/db/integration/IoTDBSimpleQueryIT.java   |  29 +++++
 .../iotdb/db/metadata/MManagerBasicTest.java       |  53 +++++++-
 .../java/org/apache/iotdb/rpc/TSStatusCode.java    |   1 +
 .../java/org/apache/iotdb/session/Session.java     |   2 +-
 .../apache/iotdb/session/IoTDBSessionSimpleIT.java |  31 ++++-
 .../iotdb/tsfile/write/chunk/ChunkWriterImpl.java  |  51 +++-----
 43 files changed, 834 insertions(+), 396 deletions(-)
 create mode 100644 .github/workflows/client.yml
 delete mode 100644 compile-tools/boost/pom.xml
 delete mode 100644 compile-tools/boost/src/assembly/bundle.xml
 copy docs/UserGuide/System Tools/MLogParser Tool.md => 
example/client-cpp-example/README.md (58%)
 rename {client-cpp => example}/client-cpp-example/pom.xml (95%)
 rename {client-cpp => example}/client-cpp-example/src/CMakeLists.txt (67%)
 rename {client-cpp => example}/client-cpp-example/src/SessionExample.cpp (100%)
 copy 
server/src/main/java/org/apache/iotdb/db/exception/metadata/{IllegalPathException.java
 => IllegalParameterOfPathException.java} (76%)

Reply via email to