This is an automated email from the ASF dual-hosted git repository. zhangchen pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
from d1d87295688 [Chore](GA)Use github's codeowner to implement maintainer review (#36852) add 91439bfeb75 [Fix](delete command) Mark delete sign when do delete command in MoW table (#35917) No new revisions were added by this update. Summary of changes: .../main/java/org/apache/doris/common/Config.java | 9 + .../apache/doris/alter/SchemaChangeHandler.java | 9 + .../java/org/apache/doris/analysis/DeleteStmt.java | 3 +- .../analysis/ModifyTablePropertiesClause.java | 33 ++- .../main/java/org/apache/doris/catalog/Env.java | 7 + .../java/org/apache/doris/catalog/OlapTable.java | 8 + .../org/apache/doris/catalog/TableProperty.java | 10 + .../apache/doris/common/util/PropertyAnalyzer.java | 24 ++ .../apache/doris/datasource/InternalCatalog.java | 14 ++ .../trees/plans/commands/DeleteFromCommand.java | 7 + .../plans/commands/DeleteFromUsingCommand.java | 10 +- .../analysis/CreateTableAsSelectStmtTest.java | 3 +- .../data/compaction/test_full_compaction.out | 2 + .../test_full_compaction_by_table_id.out | 2 + .../test_delete_generated_column.out | 4 +- .../data/delete_p0/test_delete_on_value.out | 14 +- .../delete/delete_mow_partial_update.out | 12 +- .../nereids_p0/explain/test_pushdown_explain.out | 4 +- .../data/query_p0/system/test_table_options.out | 12 +- .../test_new_partial_update_delete.out | 129 +++++++++++ .../test_partial_update_after_delete.out} | 10 +- .../partial_update/test_partial_update_delete.out | 12 +- .../suites/show_p0/test_show_delete.groovy | 2 +- .../test_new_partial_update_delete.groovy | 252 +++++++++++++++++++++ .../test_partial_update_after_delete.groovy | 79 +++++++ 25 files changed, 626 insertions(+), 45 deletions(-) create mode 100644 regression-test/data/unique_with_mow_p0/partial_update/test_new_partial_update_delete.out copy regression-test/data/{correctness_p0/test_select_decimal.out => unique_with_mow_p0/partial_update/test_partial_update_after_delete.out} (73%) create mode 100644 regression-test/suites/unique_with_mow_p0/partial_update/test_new_partial_update_delete.groovy create mode 100644 regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_after_delete.groovy --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org