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 4cfa3d098db [thirdyparty] new thirdy party dragonbox (#24979)
new 730b880e41d [fix](transaction) fix profile null exception cause txn
stuck (#24813)
new 650eabaa93b [Fix](regression-test) Fix stream load 2pc case (#24925)
new 5e2ecad6fc3 [FIX](complex-type) fix agg table with complex type with
replace state (#24873)
new 3e6e201f3e5 [fix](regression test) fix ci error (#25036)
new a227cda863d [fix](jdbc catalog) fix jdbc catalog read bitmap data
crash (#25034)
new c610e66dd52 [fix](timezone) fix parse timezone when include GMT or
time zone short ids (#25032)
new 99ce49a410d [opt](function) Use Dict to opt the function of time_round
(#25029)
new c411f654b58 [regression-test](merge-on-write) Add cases for partial
update using insert statement with schema change (#24902)
new 5d32c71e66f [fix](testcase) add state check for ADD INDEX before BUILD
INDEX to avoid table state not normal (#25038)
new 4dd86b39b46 [improvement](tablet clone) impr further repair tablet
sched priority (#25046)
new 4ee8a38cfff [Debug](float) Add clang debug tune float accuracy (#25041)
new c7b9feb5a10 [fix](planner)the common type of date and decimal should
be double (#24956)
new 7985a03c98f [bug][auth]Show grant causes role errors in the memory.
#24783 (#24841)
new 9642923b6e9 [fix](jdbc catalog )fix jdbc catalog current_timestamp
default (#25016)
new 829ed30cac4 [Fix](stream load) stearm load record use valid txn info
when two txn with same label #24320
new 583e48574c4 [minor](be) set fd number check to 60000 for BE start
script (#25078)
new 8f82e569405 [improvement](jdbc catalog)Adjustment to JDBC External
Table Configuration Based on Internal Table Settings (#25059)
new d120bbe99a5 [fix](multi-table) fix multi table task cannot end (#25056)
new 7b33457ce0e [bugfix](set_var) fix sql level exec_mem_limit does not
take effect (#25043)
new 2f9d819cff9 (Fix)(RoutineLoad)Query the transaction status NPE when
the task has not yet started scheduling (#25074)
new c24fe1d23e2 Revert "[fix](transaction) fix profile null exception
cause txn stuck (#24813)"
The 21 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:
.../routine_load/routine_load_task_executor.cpp | 3 +-
be/src/util/bitmap_value.h | 6 +-
be/src/util/time_lut.cpp | 8 +
.../aggregate_functions/aggregate_function_avg.h | 3 +
.../aggregate_function_avg_weighted.h | 6 +
.../aggregate_functions/aggregate_function_sum.h | 7 +-
be/src/vec/columns/column_array.h | 20 +-
be/src/vec/columns/column_map.h | 21 +-
be/src/vec/columns/column_struct.h | 16 +-
.../vec/functions/function_datetime_floor_ceil.cpp | 2 +-
be/src/vec/olap/block_reader.cpp | 22 +-
be/src/vec/olap/block_reader.h | 2 +-
be/src/vec/runtime/vdatetime_value.cpp | 76 +++--
be/src/vec/runtime/vdatetime_value.h | 19 +-
bin/start_be.sh | 4 +-
docs/en/docs/lakehouse/multi-catalog/jdbc.md | 4 +-
.../Show-Statements/SHOW-ROUTINE-LOAD-TASK.md | 2 +-
docs/zh-CN/docs/lakehouse/multi-catalog/jdbc.md | 4 +-
.../Show-Statements/SHOW-ROUTINE-LOAD-TASK.md | 2 +-
.../java/org/apache/doris/catalog/ScalarType.java | 21 +-
.../org/apache/doris/clone/TabletSchedCtx.java | 6 +-
.../org/apache/doris/common/util/TimeUtils.java | 41 ++-
.../doris/datasource/jdbc/JdbcExternalCatalog.java | 7 +
.../datasource/jdbc/client/JdbcMySQLClient.java | 17 +-
.../org/apache/doris/load/StreamLoadRecordMgr.java | 2 +
.../doris/load/routineload/RoutineLoadJob.java | 22 +-
.../load/routineload/RoutineLoadTaskInfo.java | 9 +-
.../doris/mysql/privilege/CatalogPrivEntry.java | 6 +
.../apache/doris/mysql/privilege/DbPrivEntry.java | 5 +
.../doris/mysql/privilege/GlobalPrivEntry.java | 7 +
.../apache/doris/mysql/privilege/PrivEntry.java | 3 +
.../apache/doris/mysql/privilege/PrivTable.java | 18 +-
.../doris/mysql/privilege/ResourcePrivEntry.java | 5 +
.../doris/mysql/privilege/TablePrivEntry.java | 4 +
.../mysql/privilege/WorkloadGroupPrivEntry.java | 5 +
.../main/java/org/apache/doris/qe/Coordinator.java | 4 +-
.../apache/doris/common/util/TimeUtilsTest.java | 5 +-
...efault_value.out => test_cast_date_decimal.out} | 2 +-
...est_nested_types_insert_into_with_agg_table.out | 15 +
...t_partial_update_insert_light_schema_change.out | 42 +++
.../test_partial_update_insert_schema_change.out | 42 +++
.../test_cast_date_decimal.groovy} | 10 +-
..._nested_types_insert_into_with_agg_table.groovy | 5 +
.../index_change/test_index_change_3.groovy | 17 ++
.../index_change/test_index_change_4.groovy | 17 ++
.../index_change/test_index_change_6.groovy | 18 ++
.../index_change/test_index_change_7.groovy | 18 ++
.../test_index_change_with_compaction.groovy | 22 ++
.../index_change/test_pk_uk_index_change.groovy | 20 ++
.../inverted_index_p0/test_build_index.groovy | 2 +
.../load_p0/stream_load/test_stream_load.groovy | 139 +++++++++
.../stream_load/test_stream_load_properties.groovy | 24 +-
.../json_function/test_query_json_replace.groovy | 2 +-
...artial_update_insert_light_schema_change.groovy | 336 +++++++++++++++++++++
...test_partial_update_insert_schema_change.groovy | 336 +++++++++++++++++++++
55 files changed, 1375 insertions(+), 106 deletions(-)
copy regression-test/data/correctness_p0/{test_sequence_col_default_value.out
=> test_cast_date_decimal.out} (95%)
create mode 100644
regression-test/data/unique_with_mow_p0/partial_update/test_partial_update_insert_light_schema_change.out
create mode 100644
regression-test/data/unique_with_mow_p0/partial_update/test_partial_update_insert_schema_change.out
copy regression-test/suites/{query_p0/join/bucket_shuffle_join.groovy =>
correctness_p0/test_cast_date_decimal.groovy} (77%)
create mode 100644
regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_insert_light_schema_change.groovy
create mode 100644
regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_insert_schema_change.groovy
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]