This is an automated email from the ASF dual-hosted git repository.
morrysnow pushed a change to branch auto-pick-48864-branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git
discard 3f1e6e02dc1 [opt](nereids) set column stats unkown by default when
derive Not expressoin (#48864)
add 6d2abf9df3d branch-2.1: [Improvement]Add query start datetime #48906
(#48992)
add ed2e1ac34a2 branch-2.1: [fix](variant) update least common type in
ColumnObject::pop_back #48935 (#48979)
add 7123bbfecb5 branch-2.1: [fix](nereids) fix distinct window compute
wrong result (#48987) (#49010)
add 7d521ce288f branch-2.1: [fix](binlog) avoid adding acqurie_md5 param
when enable_download_md5… #48573 (#49004)
add 2febf0de1be branch-2.1: [fix](udf) alias udf skip check
enable_java_udf #48843 (#48914)
add c989ac94672 branch-2.1: [chore](binlog) add ingesting/downloading
binlog latency metrics #48599 (#49002)
add 79595ad62f8 [fix](minor) Reorder incorrect logging (#49001)
add ad6cf63a281 branch-2.1: [opt](inverted index) uniform profile naming
convention #48826 (#48975)
add 5988495576c [fix](statistics)Control memory use for sample partition
column and key column. (#46534) (#48927)
add b5c85e09629 branch-2.1: [fix](hudi) replace non thread safe
SimpleDateFormat #48923 (#49022)
add e5a2b0eea81 Revert "[cherry-pick](jsonb) add a check for jsonb value
to avoid invalid jsonb value write into segment file " (#49058)
add ed3a9799040 [feature](statistics)Support enable/disable auto analyze
for table. (#39532) (#48863)
add d0f6edd2128 branch-2.1: [improvement](statistics)Add session variable
for partition sample count. #48218 (#49092)
add 8589db3ec35 Revert "branch-2.1: [fix](nereids) fix distinct window
compute wrong result (#48987) (#49010)" (#49079)
add 3b70606c4f7 [improvement](statistics)Improve analyze partition column
and key column corner case. (#48757) (#49101)
add 1eff4538aa3 branch-2.1: [fix](nereids) fix convert to date literal
throw exception #48980 (#48985)
add afb143c1e86 [improve](binlog) Add config to control whether enable
persistent connection during ingesting (#49005)
add be3e2f36d07 branch-2.1: [fix](nereids)fix the
cascadesContext.getMemo()==null #48771 (#49095)
add e7d4dda3c84 branch-2.1: [Fix](function) Fix wrong FE fold constant
implementation of function date_format #49032 (#49086)
add cf88db4938f branch-2.1: [improvement](ccr) Add and adjust result for
get_lag #48953 (#49055)
add 98a59f914a5 branch-2.1: [chore](binlog) GetMeta returns dropped
partition/table/index commit seq #48852 (#48900)
add 68f50b569b0 branch-2.1: [fix](group commit)Fix replay wal fail problem
on agg state type #49081 (#49143)
add bd5d0ca7416 branch-2.1: [fix](Nereids) fold str_to_date to wrong
result when parameter out of range #49033 (#49150)
add 16e348b189e [fix](array/map) Fix BE crash in lambda functions (#49139)
add 620dc51b68f [opt](nereids) set column stats unkown by default when
derive Not expressoin (#48864)
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 (3f1e6e02dc1)
\
N -- N -- N refs/heads/auto-pick-48864-branch-2.1 (620dc51b68f)
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/common/config.cpp | 3 +
be/src/common/config.h | 3 +
be/src/http/action/download_binlog_action.cpp | 14 +
be/src/http/http_client.cpp | 29 +-
be/src/http/http_client.h | 4 +
be/src/olap/inverted_index_profile.h | 4 +-
be/src/runtime/fragment_mgr.cpp | 13 +-
be/src/service/backend_service.cpp | 58 +-
be/src/util/jsonb_document.h | 4 +-
be/src/util/jsonb_utils.h | 2 +-
be/src/util/jsonb_writer.h | 3 +-
be/src/util/stopwatch.hpp | 14 +
be/src/vec/columns/column_object.cpp | 3 +
.../exprs/lambda_function/varray_map_function.cpp | 9 +-
.../exprs/table_function/vexplode_json_array.cpp | 2 +-
.../exprs/table_function/vexplode_json_object.cpp | 4 +-
.../vec/functions/array/function_array_element.h | 5 +-
be/src/vec/functions/function_cast.h | 4 +-
be/src/vec/functions/function_jsonb.cpp | 17 +-
be/src/vec/jsonb/serialize.cpp | 4 +-
be/src/vec/olap/olap_data_convertor.cpp | 23 +-
be/src/vec/olap/olap_data_convertor.h | 4 +-
be/test/olap/inverted_index_profile_test.cpp | 8 +-
be/test/vec/columns/column_object_test.cpp | 130 +++++
.../vec/data_types/serde/data_type_serde_test.cpp | 4 +-
be/test/vec/olap/jsonb_value_test.cpp | 242 --------
.../main/java/org/apache/doris/alter/Alter.java | 54 +-
.../apache/doris/alter/SchemaChangeHandler.java | 3 +-
.../org/apache/doris/analysis/AlterTableStmt.java | 3 -
.../analysis/ModifyTablePropertiesClause.java | 18 +
.../apache/doris/analysis/ShowTableStatsStmt.java | 3 +
.../org/apache/doris/binlog/BinlogLagInfo.java | 17 +-
.../org/apache/doris/binlog/BinlogManager.java | 6 +-
.../java/org/apache/doris/binlog/BinlogUtils.java | 27 +-
.../java/org/apache/doris/binlog/DBBinlog.java | 19 +-
.../main/java/org/apache/doris/catalog/Env.java | 61 +-
.../org/apache/doris/catalog/FunctionRegistry.java | 12 +-
.../org/apache/doris/catalog/FunctionUtil.java | 5 -
.../java/org/apache/doris/catalog/OlapTable.java | 18 +
.../main/java/org/apache/doris/catalog/Table.java | 5 +
.../java/org/apache/doris/catalog/TableIf.java | 2 +
.../org/apache/doris/catalog/TableProperty.java | 10 +
.../apache/doris/common/util/PropertyAnalyzer.java | 5 +
.../apache/doris/datasource/ExternalCatalog.java | 15 +
.../org/apache/doris/datasource/ExternalTable.java | 11 +
.../apache/doris/datasource/hudi/HudiUtils.java | 8 +-
.../org/apache/doris/nereids/NereidsPlanner.java | 15 +-
.../expression/rules/FoldConstantRuleOnFE.java | 19 +-
.../doris/nereids/stats/ExpressionEstimation.java | 3 +-
.../executable/DateTimeExtractAndTransform.java | 26 +-
.../trees/expressions/literal/DateLiteral.java | 28 +-
.../trees/expressions/literal/DateTimeLiteral.java | 4 +-
.../apache/doris/nereids/types/DateTimeV2Type.java | 10 +-
.../org/apache/doris/nereids/util/DateUtils.java | 14 +-
.../doris/nereids/util/TypeCoercionUtils.java | 5 +-
.../persist/ModifyTablePropertyOperationLog.java | 24 +
.../apache/doris/plugin/audit/AuditLogBuilder.java | 29 +-
.../java/org/apache/doris/qe/SessionVariable.java | 14 +
.../apache/doris/service/FrontendServiceImpl.java | 2 +
.../apache/doris/statistics/BaseAnalysisTask.java | 2 +-
.../apache/doris/statistics/OlapAnalysisTask.java | 420 +++++++++-----
.../doris/statistics/StatisticConstants.java | 4 +
.../doris/statistics/StatisticsAutoCollector.java | 3 +
.../doris/statistics/util/StatisticsUtil.java | 18 +
.../ExternalFileTableValuedFunction.java | 1 +
.../doris/datasource/hudi/HudiUtilsTest.java | 97 ++++
.../doris/nereids/trees/expressions/UdfTest.java | 4 +
.../trees/expressions/literal/DateLiteralTest.java | 9 +-
.../doris/plugin/audit/AuditLogBuilderTest.java | 48 ++
.../doris/statistics/OlapAnalysisTaskTest.java | 629 +++++++++++++++------
gensrc/thrift/FrontendService.thrift | 11 +-
.../test_insert_table_with_dump_nereids_memo.out} | Bin 126 -> 126 bytes
.../test_array_map.out} | Bin
.../data/nereids_syntax_p0/test_cast_datetime.out | Bin 351 -> 258 bytes
...test_insert_table_with_dump_nereids_memo.groovy | 58 ++
.../hive/test_hive_statistics_p0.groovy | 65 +++
.../suites/function_p0/test_array_map.groovy | 227 ++++++++
.../fold_constant_date_arithmatic.groovy | 19 +
.../nereids_syntax_p0/test_cast_datetime.groovy | 504 ++++++++++++++++-
.../test_auto_analyze_black_white_list.groovy | 112 ++++
80 files changed, 2549 insertions(+), 787 deletions(-)
create mode 100644 be/test/vec/columns/column_object_test.cpp
delete mode 100644 be/test/vec/olap/jsonb_value_test.cpp
create mode 100644
fe/fe-core/src/test/java/org/apache/doris/plugin/audit/AuditLogBuilderTest.java
copy regression-test/data/{correctness_p0/test_hash_join_local_shuffle.out =>
correctness/test_insert_table_with_dump_nereids_memo.out} (87%)
copy regression-test/data/{load_p0/stream_load/test_stream_load_empty_file.out
=> function_p0/test_array_map.out} (100%)
create mode 100644
regression-test/suites/correctness/test_insert_table_with_dump_nereids_memo.groovy
create mode 100644 regression-test/suites/function_p0/test_array_map.groovy
create mode 100644
regression-test/suites/statistics/test_auto_analyze_black_white_list.groovy
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]