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

kxiao pushed a change to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git


    from 69f2beb050d [fix](regression-test)Fix test insert from tvf with common 
user (#25494)
     new d3f0a1856ec [Bug](delete) Use date as common type for date comparison 
(#25262)
     new 01bca9d95b7 [chore](format) fix tablet_meta.cpp (#25410)
     new 6be4994e80e [chore](build) Fix compilation errors reported by GCC-13 
(#25439)
     new 6d14c43721c [fix](build) aarch64 compilation fix # (#25443)
     new feb1ebbe42b insert default when json array parse failed (#25447)
     new 91fe09e3a28 [opt] use correct column label when execute query in FE 
(#25372)
     new e00d4622606 [fix](planner)should not add TupleIsNullPredicate for 
inlineview plan (#25338)
     new 68c50ee00ee [fix](hive-udf) delete Logger to avoid Kryo serialize 
problem. (#25312)
     new 2fedad33e4b [refactor](stats) Use id instead name in analysis info 
(#25213)
     new fc37baaf53b [Chore](sink) add index number check for table sink 
(#25461)
     new f2ba2965222 [fix](planner)should call SlotRef'smaterializeSrcExpr() 
method  if the slotRef is materialized (#25467)
     new 56500f7b0f8 [Improvement](materialized-view) set job failed when 
toAgentTaskRequest meet error (#25358)
     new 5e02dc719f6 [compile](fix)  fix ubsan compile error (#25473)
     new 4916bbf7325 [enhancement](cooldown) Improve cooldown logs (#25432)
     new 11c81822e3e [fix](path gc) fix data dir path gc (#25420)

The 15 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/be-ut-mac.yml                    |  4 +-
 be/CMakeLists.txt                                  |  5 +-
 be/src/common/config.cpp                           |  3 +-
 be/src/common/stack_trace.cpp                      |  2 +-
 be/src/common/status.h                             |  8 +-
 be/src/olap/cold_data_compaction.cpp               |  2 +-
 be/src/olap/data_dir.cpp                           | 25 +++++--
 be/src/olap/data_dir.h                             |  8 +-
 be/src/olap/memtable.cpp                           |  2 +-
 be/src/olap/olap_server.cpp                        |  8 +-
 be/src/olap/tablet.cpp                             | 21 ++++--
 be/src/olap/tablet_meta.cpp                        |  2 +-
 be/src/util/bitmap_value.h                         |  1 +
 be/src/util/perf_counters.cpp                      |  2 +-
 .../aggregate_function_state_merge.h               |  2 +
 .../exprs/table_function/vexplode_json_array.cpp   |  2 +-
 be/src/vec/functions/uuid_numeric.cpp              |  4 +-
 be/src/vec/runtime/shared_hash_table_controller.h  |  2 +-
 .../java/org/apache/doris/alter/RollupJobV2.java   |  2 +-
 .../org/apache/doris/alter/SchemaChangeJobV2.java  |  4 +-
 .../org/apache/doris/analysis/AnalyzeTblStmt.java  |  6 ++
 .../org/apache/doris/analysis/BinaryPredicate.java |  2 +
 .../doris/analysis/CreateMaterializedViewStmt.java | 45 ++++++++++-
 .../apache/doris/analysis/ExpressionFunctions.java |  2 +-
 .../doris/catalog/BuiltinScalarFunctions.java      |  2 +-
 .../java/org/apache/doris/catalog/OlapTable.java   |  4 +
 .../org/apache/doris/datasource/CatalogMgr.java    |  9 ++-
 .../org/apache/doris/nereids/NereidsPlanner.java   |  3 +-
 .../mv/AbstractSelectMaterializedIndexRule.java    |  8 --
 .../mv/SelectMaterializedIndexWithAggregate.java   | 36 ++++-----
 .../expressions/functions/scalar/CurrentUser.java  |  4 +-
 .../org/apache/doris/planner/JoinNodeBase.java     |  1 +
 .../org/apache/doris/planner/OlapTableSink.java    | 10 +++
 .../apache/doris/planner/SingleNodePlanner.java    | 14 ----
 .../java/org/apache/doris/qe/ShowExecutor.java     | 15 +++-
 .../org/apache/doris/statistics/AnalysisInfo.java  | 87 ++++++----------------
 .../doris/statistics/AnalysisInfoBuilder.java      | 32 ++++----
 .../apache/doris/statistics/AnalysisManager.java   | 50 ++++++++-----
 .../apache/doris/statistics/BaseAnalysisTask.java  | 31 +++-----
 .../apache/doris/statistics/HMSAnalysisTask.java   |  6 +-
 .../org/apache/doris/statistics/HistogramTask.java |  4 +-
 .../apache/doris/statistics/JdbcAnalysisTask.java  |  4 +-
 .../apache/doris/statistics/MVAnalysisTask.java    |  4 +-
 .../apache/doris/statistics/OlapAnalysisTask.java  | 12 +--
 .../doris/statistics/StatisticsAutoCollector.java  | 35 +--------
 .../apache/doris/statistics/StatisticsCleaner.java |  2 +-
 .../doris/statistics/StatisticsCollector.java      |  2 +-
 .../apache/doris/statistics/util/DBObjects.java    |  8 +-
 .../doris/statistics/util/StatisticsUtil.java      | 47 ++++++++++--
 .../java/org/apache/doris/task/AgentBatchTask.java |  7 +-
 .../apache/doris/planner/OlapTableSinkTest.java    |  6 ++
 .../apache/doris/statistics/AnalysisJobTest.java   | 34 ++++++++-
 .../doris/statistics/AnalysisTaskExecutorTest.java | 57 +++++++++++---
 .../apache/doris/statistics/HistogramTaskTest.java | 31 +++++++-
 .../java/org/apache/doris/udf/BitmapAndUDF.java    |  4 -
 .../java/org/apache/doris/udf/BitmapCountUDF.java  |  4 -
 .../java/org/apache/doris/udf/BitmapOrUDF.java     |  4 -
 .../java/org/apache/doris/udf/BitmapXorUDF.java    |  4 -
 .../test_outer_join_with_cross_join.out            |  3 +
 .../multiple_ssb_between.out}                      |  0
 .../table_function/explode_json_array.out          |  4 +
 .../test_outer_join_with_cross_join.groovy         | 18 +++++
 .../multiple_ssb_between.groovy}                   |  8 +-
 .../table_function/explode_json_array.groovy       |  5 ++
 .../suites/statistics/analyze_stats.groovy         |  2 +-
 65 files changed, 468 insertions(+), 317 deletions(-)
 copy regression-test/data/mv_p0/ssb/{multiple_ssb/multiple_ssb.out => 
multiple_ssb_between/multiple_ssb_between.out} (100%)
 copy regression-test/suites/mv_p0/ssb/{multiple_ssb/multiple_ssb.groovy => 
multiple_ssb_between/multiple_ssb_between.groovy} (98%)


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

Reply via email to