You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by er...@apache.org on 2023/01/03 02:13:04 UTC

[iotdb] branch improve/iotdb-5803 updated (cc62778157 -> 7865e69562)

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

ericpai pushed a change to branch improve/iotdb-5803
in repository https://gitbox.apache.org/repos/asf/iotdb.git


 discard cc62778157 [IOTDB-5303] Refine IT config: part I
     add be9e023710 [IOTDB-5284] Fix some confignode code smells (#8648)
     add 3b770954e4 [IOTDB-5329] Exception handler for AbstractTreeVisitor (#8700)
     add 954e682fa1 [IOTDB-5309] Wrong calculation for retained size of tsblock calculate
     add 1b7eab5974 [IOTDB-5316] fix bug that Session.setFetchSize is not used in the following fetch requests
     add 7865e69562 [IOTDB-5303] Refine IT config: part I

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   (cc62778157)
            \
             N -- N -- N   refs/heads/improve/iotdb-5803 (7865e69562)

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:
 .../persistence/schema/ClusterSchemaInfo.java      |  46 ++++---
 .../procedure/impl/cq/CreateCQProcedure.java       |   4 +-
 .../impl/node/RemoveConfigNodeProcedure.java       |   4 +-
 .../impl/sync/AbstractOperatePipeProcedure.java    |   4 +-
 .../procedure/impl/sync/CreatePipeProcedure.java   |   3 +-
 .../impl/trigger/CreateTriggerProcedure.java       |   4 +-
 .../impl/trigger/DropTriggerProcedure.java         |   4 +-
 .../it/partition/IoTDBPartitionGetterIT.java       |   4 +-
 .../org/apache/iotdb/isession/SessionDataSet.java  |  31 +++++
 .../commons/schema/tree/AbstractTreeVisitor.java   | 133 ++++++++++++++++-----
 .../tree/AbstractTreeVisitorWithLimitOffset.java   |   2 +-
 .../apache/iotdb/session/SessionConnection.java    |   3 +-
 .../iotdb/tsfile/read/common/block/TsBlock.java    |   3 +-
 .../read/common/block/column/BinaryColumn.java     |   6 +-
 .../read/common/block/column/BooleanColumn.java    |   5 +-
 .../read/common/block/column/DoubleColumn.java     |   6 +-
 .../read/common/block/column/FloatColumn.java      |   6 +-
 .../tsfile/read/common/block/column/IntColumn.java |   6 +-
 .../read/common/block/column/LongColumn.java       |   6 +-
 .../read/common/block/column/TimeColumn.java       |   4 +-
 20 files changed, 195 insertions(+), 89 deletions(-)