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

yiguolei pushed a change to branch auto-pick-57847-branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard d7f1955367f [chore] (audit) generate digest string for 
LogicalPlanAdapter (#57847)
     add 1be7d551b93 branch-4.0: [fix](job) fix show job and task offset info 
#57736 (#57845)
     add cbe11335daf branch-4.0: [Enhancement] support simple sql function for 
factorial(from Hive) #57144 (#57878)
     add 64ce962f0e9 branch-4.0: [fix](nereids) Fix not in aggregate's output 
err after eliminate by uniform when group sets exist #56942 (#57869)
     add c68ba72a0b6 branch-4.0: [chore](function) let implicit castable 
signature be pure nereids #57641 (#57800)
     add 4003592d359 branch-4.0: [Improvement](block) remove 
Block::row_same_bit #57522 (#57841)
     add c1f8f153338 branch-4.0: [enhancement](filecache) add readsize and 
hitsize metrics to file_cache statistics and be vars #52212 (#57851)
     add 28354d451cd [chore] (audit) generate digest string for 
LogicalPlanAdapter (#57847)

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   (d7f1955367f)
            \
             N -- N -- N   refs/heads/auto-pick-57847-branch-4.0 (28354d451cd)

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:
 be/src/io/cache/block_file_cache.cpp               | 27 +++++-
 be/src/io/cache/block_file_cache.h                 |  2 +
 be/src/olap/iterators.h                            | 37 +++++++--
 be/src/olap/rowset/beta_rowset_reader.cpp          | 56 +------------
 be/src/olap/rowset/beta_rowset_reader.h            | 49 +++++++++--
 be/src/olap/rowset/rowset_reader.h                 |  8 +-
 be/src/olap/schema_change.cpp                      | 18 +++-
 be/src/olap/schema_change.h                        |  3 +
 be/src/vec/core/block.cpp                          | 19 -----
 be/src/vec/core/block.h                            | 17 ----
 be/src/vec/exec/scan/scanner.cpp                   |  3 -
 be/src/vec/functions/math.cpp                      | 69 ++++++++++++++++
 be/src/vec/olap/block_reader.cpp                   | 10 +--
 be/src/vec/olap/block_reader.h                     |  2 -
 be/src/vec/olap/vcollect_iterator.cpp              | 13 ++-
 be/src/vec/olap/vcollect_iterator.h                | 14 +++-
 be/src/vec/olap/vgeneric_iterators.cpp             |  8 +-
 be/src/vec/olap/vgeneric_iterators.h               | 12 ++-
 be/test/olap/collection_statistics_test.cpp        | 12 ++-
 be/test/olap/ordered_data_compaction_test.cpp      |  2 +-
 be/test/olap/rowid_conversion_test.cpp             |  2 +-
 be/test/olap/segcompaction_mow_test.cpp            |  5 +-
 be/test/olap/segcompaction_test.cpp                | 15 +++-
 be/test/vec/core/block_test.cpp                    | 32 --------
 be/test/vec/exec/vgeneric_iterators_test.cpp       | 12 ++-
 be/test/vec/function/function_math_test.cpp        | 28 +++++++
 be/test/vec/olap/vertical_compaction_test.cpp      | 12 +--
 .../doris/catalog/BuiltinScalarFunctions.java      |  2 +
 .../doris/job/extensions/insert/InsertTask.java    |  2 +
 .../insert/streaming/StreamingInsertJob.java       |  8 +-
 .../insert/streaming/StreamingInsertTask.java      |  3 +-
 .../java/org/apache/doris/job/offset/Offset.java   |  2 +
 .../org/apache/doris/job/offset/s3/S3Offset.java   | 10 ++-
 .../job/offset/s3/S3SourceOffsetProvider.java      | 10 ++-
 .../rules/expression/ExpressionRuleType.java       |  1 +
 .../rewrite/EliminateGroupByKeyByUniform.java      |  6 ++
 .../nereids/rules/rewrite/ExprIdRewriter.java      | 59 +++++++++++---
 .../trees/expressions/VirtualSlotReference.java    |  7 ++
 .../functions/ExplicitlyCastableSignature.java     |  4 +-
 .../functions/ImplicitlyCastableSignature.java     | 20 +++--
 .../functions/executable/NumericArithmetic.java    | 13 +++
 .../functions/scalar/{Ln.java => Factorial.java}   | 21 +++--
 .../expressions/functions/scalar/WidthBucket.java  | 10 +--
 .../expressions/visitor/ScalarFunctionVisitor.java |  5 ++
 .../trees/plans/logical/LogicalAggregate.java      |  6 ++
 .../doris/nereids/util/TypeCoercionUtils.java      |  2 +-
 .../test_math_unary_always_nullable.out            | 38 +++++++++
 .../streaming_job/test_streaming_insert_job.groovy | 20 +++--
 .../test_streaming_insert_job_alter.groovy         |  2 +-
 .../test_streaming_insert_job_crud.groovy          |  7 +-
 .../test_streaming_insert_job_offset.groovy        |  8 +-
 ...st_streaming_job_alter_offset_restart_fe.groovy | 12 +--
 .../test_streaming_job_restart_fe.groovy           |  8 +-
 .../fold_constant_numeric_arithmatic.groovy        | 10 +++
 .../eliminate_group_by_key_by_uniform.groovy       | 95 ++++++++++++++++++++++
 .../test_math_unary_always_nullable.groovy         | 43 ++++++++++
 56 files changed, 663 insertions(+), 258 deletions(-)
 copy 
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/scalar/{Ln.java
 => Factorial.java} (80%)


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to