You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by yo...@apache.org on 2023/01/17 15:34:41 UTC

[iotdb] branch Fix-configuration-error updated (29c64eeb7e -> bcf1b923ab)

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

yongzao pushed a change to branch Fix-configuration-error
in repository https://gitbox.apache.org/repos/asf/iotdb.git


 discard 29c64eeb7e Update LoadManager.java
     add 5ee9541dae [IOTDB-5417] Fix missing hasNext() before next() in TagAggregationOperator
     add 974afbadb9 [IOTDB-5424] Fix FI memory allocation limit calculation
     add ecc0224195 Update IoTDBConfig.java (#8887)
     add 5e2e9d33c7 Fix typo in README
     add bcf1b923ab [IOTDB-5382]Support DIFF as built-in scalar function in IoTDB

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   (29c64eeb7e)
            \
             N -- N -- N   refs/heads/Fix-configuration-error (bcf1b923ab)

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:
 README.md                                          |   2 +-
 .../iotdb/confignode/manager/load/LoadManager.java |   5 -
 .../Operators-Functions/Variation-Trend.md         |  63 ++++
 docs/zh/UserGuide/Operators-Functions/Overview.md  |   5 +
 .../Operators-Functions/Variation-Trend.md         |  63 ++++
 .../apache/iotdb/itbase/constant/TestConstant.java |   1 +
 .../org/apache/iotdb/db/it/IoTDBMultiDeviceIT.java |   1 +
 .../scalar/IoTDBDiffFunction2IT.java}              |  22 +-
 .../scalar/IoTDBDiffFunction3IT.java}              |  22 +-
 .../scalar/IoTDBDiffFunctionIT.java                | 346 +++++++++++++++++++++
 .../apache/iotdb/commons/conf/CommonConfig.java    |  12 +-
 ...ionFunction.java => BuiltinScalarFunction.java} |  28 +-
 .../java/org/apache/iotdb/db/conf/IoTDBConfig.java |   2 +-
 .../org/apache/iotdb/db/constant/SqlConstant.java  |   3 +
 .../iotdb/db/mpp/execution/memory/MemoryPool.java  |   3 +-
 .../operator/process/TagAggregationOperator.java   |   2 +-
 .../apache/iotdb/db/mpp/plan/analyze/Analysis.java |  12 +
 .../iotdb/db/mpp/plan/analyze/AnalyzeVisitor.java  |  18 ++
 .../db/mpp/plan/analyze/ExpressionAnalyzer.java    |  33 ++
 .../mpp/plan/analyze/ExpressionTypeAnalyzer.java   |   7 +
 .../plan/expression/multi/FunctionExpression.java  |  13 +-
 .../visitor/ColumnTransformerVisitor.java          |  23 ++
 .../visitor/IntermediateLayerVisitor.java          |  22 ++
 .../plan/planner/distribution/SourceRewriter.java  |  14 +-
 ...mer.java => DiffFunctionColumnTransformer.java} |  50 +--
 ...ansformer.java => DiffFunctionTransformer.java} |  59 +++-
 .../apache/iotdb/db/utils/TypeInferenceUtils.java  |  29 ++
 .../mpp/execution/exchange/SourceHandleTest.java   |  17 +-
 .../plan/distribution/AlignedByDeviceTest.java     | 108 +++++++
 29 files changed, 876 insertions(+), 109 deletions(-)
 copy integration-test/src/test/java/org/apache/iotdb/db/it/{selectinto/IoTDBSelectInto3IT.java => builtinfunction/scalar/IoTDBDiffFunction2IT.java} (74%)
 copy integration-test/src/test/java/org/apache/iotdb/db/it/{selectinto/IoTDBSelectInto3IT.java => builtinfunction/scalar/IoTDBDiffFunction3IT.java} (74%)
 create mode 100644 integration-test/src/test/java/org/apache/iotdb/db/it/builtinfunction/scalar/IoTDBDiffFunctionIT.java
 copy node-commons/src/main/java/org/apache/iotdb/commons/udf/builtin/{BuiltinAggregationFunction.java => BuiltinScalarFunction.java} (67%)
 copy server/src/main/java/org/apache/iotdb/db/mpp/transformation/dag/column/unary/{RegularColumnTransformer.java => DiffFunctionColumnTransformer.java} (57%)
 copy server/src/main/java/org/apache/iotdb/db/mpp/transformation/dag/transformer/unary/{IsNullTransformer.java => DiffFunctionTransformer.java} (53%)