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

dataroaring pushed a change to branch auto-pick-51162-branch-3.0
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard a4f6226270c [feat](cloud) Support alter operation for obj_info and s3 
vault obj_info (#51162)
     add ce42bb56235 branch-3.0:[improvement](statistics)Agg table set preagg 
on when doing sample analyzing. (#49918) (#51672)
     add b62273acb45 [refactor](jsonb) Make the checkAndCreateDocument function 
return a Status (#51673)
     add c9755f5d65b [opt](deps) add jindofs in classpath after hadoop libs 
(#51689) (#51722)
     add 6acf137cd25 [enhancement](time_series) increase the version limit for 
the time series table (#51371) (#51656)
     add 1b67a327374 branch-3.0: Pick [fix](group commit) replay wal set cloud 
cluster name (#51517) (#51666)
     add 5a7618fe4c6 branch-3.0: [fix](nereids)allow in partition contains 
MAX_VALUE #46076 (#51806)
     add 5ae9cf7ee6f branch-3.0: [Fix](case) Fix case 
`test_key_bounds_truncation_write_scenarios` #51761 (#51788)
     add b8a9344e226 branch-3.0: [opt](insert) return root cause of exception 
when executing insert #51721 (#51758)
     add e6f690ee6e8 branch-3.0: [fix](doris-compose) fix docker file create 
directory #51644 (#51737)
     add 987b5b502ea branch-3.0: [bugfix](query) Fix for incorrect query 
results of variant type #51651 (#51705)
     add f6d7f7023be branch-3.0: [fix](regression) fix 
test_alter_column_comment case failed in 3 FE environment #51655 (#51691)
     add f9a82005a19 [feat](cloud) Support alter operation for obj_info and s3 
vault obj_info (#51162)

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   (a4f6226270c)
            \
             N -- N -- N   refs/heads/auto-pick-51162-branch-3.0 (f9a82005a19)

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/agent/task_worker_pool.cpp                  |   3 +-
 be/src/cloud/cloud_delete_task.cpp                 |  11 +-
 be/src/cloud/cloud_rowset_builder.cpp              |   8 +-
 be/src/cloud/cloud_tablet_mgr.cpp                  |   4 +-
 be/src/common/config.cpp                           |   2 +
 be/src/common/config.h                             |   2 +
 be/src/olap/base_tablet.cpp                        |   8 +
 be/src/olap/base_tablet.h                          |   2 +
 be/src/olap/olap_server.cpp                        |   3 +-
 be/src/olap/push_handler.cpp                       |   9 +-
 be/src/olap/rowset_builder.cpp                     |  10 +-
 be/src/util/jsonb_document.h                       | 250 ++++++++---------
 be/src/util/jsonb_utils.h                          |  24 +-
 be/src/util/jsonb_writer.h                         |  11 +-
 .../exprs/table_function/vexplode_json_array.cpp   |   5 +-
 .../exprs/table_function/vexplode_json_object.cpp  |   5 +-
 be/src/vec/functions/function_cast.h               |  12 +-
 be/src/vec/functions/function_jsonb.cpp            |  40 +--
 be/src/vec/jsonb/serialize.cpp                     |   5 +-
 be/src/vec/olap/olap_data_convertor.cpp            |  16 +-
 .../vec/data_types/common_data_type_serder_test.h  |   5 +-
 .../vec/data_types/serde/data_type_serde_test.cpp  |   8 +-
 be/test/vec/olap/jsonb_value_test.cpp              |   6 +-
 bin/start_be.sh                                    |   8 +
 bin/start_fe.sh                                    |   8 +
 build.sh                                           |  24 +-
 docker/runtime/doris-compose/Dockerfile            |   3 +-
 .../org/apache/doris/load/StreamLoadHandler.java   |   2 +-
 .../org/apache/doris/nereids/StatementContext.java |   9 +
 .../doris/nereids/jobs/executor/Analyzer.java      |   4 +-
 .../doris/nereids/parser/LogicalPlanBuilder.java   | 138 ++++++----
 .../org/apache/doris/nereids/rules/RuleType.java   |   1 +
 .../doris/nereids/rules/analysis/BindRelation.java |  11 +-
 ...lter.java => EliminateLogicalPreAggOnHint.java} |  17 +-
 .../LogicalResultSinkToShortCircuitPointQuery.java |   3 +
 .../apache/doris/nereids/trees/plans/PlanType.java |   1 +
 .../trees/plans/commands/info/BaseViewInfo.java    |   4 +-
 .../trees/plans/commands/info/InPartition.java     |   3 -
 .../insert/BaseExternalTableInsertExecutor.java    |   3 +-
 ...calSelectHint.java => LogicalPreAggOnHint.java} |  54 +---
 .../nereids/trees/plans/visitor/PlanVisitor.java   |   5 +
 .../apache/doris/statistics/AnalysisManager.java   |   8 +-
 .../apache/doris/statistics/BaseAnalysisTask.java  |   6 +-
 .../doris/statistics/ExternalAnalysisTask.java     |   1 +
 .../apache/doris/statistics/OlapAnalysisTask.java  |  15 +-
 .../doris/statistics/StatisticsAutoCollector.java  |  23 +-
 .../apache/doris/statistics/TableStatsMeta.java    |  22 +-
 .../doris/statistics/util/StatisticsUtil.java      |  20 ++
 .../ExternalFileTableValuedFunction.java           |   2 +-
 .../doris/statistics/OlapAnalysisTaskTest.java     |  62 ++++-
 .../statistics/StatisticsAutoCollectorTest.java    |   5 +-
 .../doris/statistics/util/StatisticsUtilTest.java  |  57 ++++
 .../test_group_commit_replay_wal.csv}              |   0
 .../data/point_query_p0/test_point_query.out       | Bin 9934 -> 9946 bytes
 .../data/variant_p0/variant_with_rowstore.out      | Bin 1338 -> 1344 bytes
 .../alter_p0/test_alter_column_comment.groovy      |   4 +-
 .../test_group_commit_replay_wal.groovy            |  95 +++++++
 .../insert_p0/insert_group_commit_into.groovy      |   2 +-
 .../suites/point_query_p0/test_point_query.groovy  |  31 ++-
 .../suites/statistics/analyze_stats.groovy         |   3 +-
 .../suites/statistics/test_analyze_mv.groovy       |  57 +---
 .../test_skip_agg_table_value_column.groovy        | 298 +++++++++++++++++++++
 ...st_key_bounds_truncation_write_scenarios.groovy |  36 +--
 63 files changed, 1033 insertions(+), 461 deletions(-)
 copy 
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/analysis/{HavingToFilter.java
 => EliminateLogicalPreAggOnHint.java} (61%)
 copy 
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/logical/{LogicalSelectHint.java
 => LogicalPreAggOnHint.java} (55%)
 copy regression-test/data/{fault_injection_p0/group_commit_wal_msg.csv => 
cloud_p0/multi_cluster/test_group_commit_replay_wal.csv} (100%)
 create mode 100644 
regression-test/suites/cloud_p0/multi_cluster/test_group_commit_replay_wal.groovy
 create mode 100644 
regression-test/suites/statistics/test_skip_agg_table_value_column.groovy


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

Reply via email to