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/05 02:18:46 UTC

[iotdb] branch improve/iotdb-5803 updated (3ce0388ecf -> c644d3fbde)

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 3ce0388ecf [IOTDB-5303] Refine IT config: part I
     add 11c489bc25 [IOTDB-4933] More detailed error message for udf/trigger executor and fix typo in udf doc
     add df78367ee6 [IOTDB-5308] Limit the output tsblock's size of each operator[Part1]
     add c644d3fbde [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   (3ce0388ecf)
            \
             N -- N -- N   refs/heads/improve/iotdb-5803 (c644d3fbde)

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:
 .../Operators-Functions/User-Defined-Function.md   |  2 +-
 .../Operators-Functions/User-Defined-Function.md   |  2 +-
 .../apache/iotdb/db/it/IoTDBFloatPrecisionIT.java  |  3 -
 .../mpp/execution/operator/AbstractOperator.java   | 94 ++++++++++++++++++++++
 ...sOperator.java => AbstractProcessOperator.java} |  6 +-
 .../process/join/RowBasedTimeJoinOperator.java     | 35 ++++----
 .../operator/process/join/TimeJoinOperator.java    | 31 +++----
 ...erator.java => AbstractDataSourceOperator.java} | 12 ++-
 .../AbstractSeriesAggregationScanOperator.java     | 21 +----
 ...ceOperator.java => AbstractSourceOperator.java} | 12 ++-
 .../operator/source/AlignedSeriesScanOperator.java | 50 +++++-------
 .../operator/source/SeriesScanOperator.java        | 41 +++-------
 .../mpp/transformation/dag/udf/UDTFExecutor.java   |  7 +-
 .../iotdb/db/trigger/executor/TriggerExecutor.java |  2 +-
 .../mpp/execution/operator/OperatorMemoryTest.java | 28 ++++---
 .../iotdb/tsfile/read/common/block/TsBlock.java    |  9 +++
 .../read/common/block/column/BinaryColumn.java     |  5 ++
 .../read/common/block/column/BooleanColumn.java    |  5 ++
 .../tsfile/read/common/block/column/Column.java    |  2 +
 .../read/common/block/column/DoubleColumn.java     |  5 ++
 .../read/common/block/column/FloatColumn.java      |  5 ++
 .../tsfile/read/common/block/column/IntColumn.java |  5 ++
 .../read/common/block/column/LongColumn.java       |  5 ++
 .../read/common/block/column/NullColumn.java       |  5 ++
 .../block/column/RunLengthEncodedColumn.java       |  5 ++
 .../read/common/block/column/TimeColumn.java       |  5 ++
 26 files changed, 270 insertions(+), 132 deletions(-)
 create mode 100644 server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/AbstractOperator.java
 copy server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/process/{ProcessOperator.java => AbstractProcessOperator.java} (82%)
 copy server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/source/{DataSourceOperator.java => AbstractDataSourceOperator.java} (72%)
 copy server/src/main/java/org/apache/iotdb/db/mpp/execution/operator/source/{SourceOperator.java => AbstractSourceOperator.java} (77%)