This is an automated email from the ASF dual-hosted git repository.
morrysnow pushed a commit to branch branch-3.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.1 by this push:
new 2164dd2e370 branch-3.1: [Fix](case) Fix some cases #55606 (#55656)
2164dd2e370 is described below
commit 2164dd2e37016ef69eaacf3f1134d15ab9004ffd
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Sep 6 00:38:47 2025 +0800
branch-3.1: [Fix](case) Fix some cases #55606 (#55656)
Cherry-picked from #55606
Co-authored-by: bobhan1 <[email protected]>
---
.../partial_update/test_delete_publish_skip_read.groovy | 2 ++
.../partial_update/test_partial_update_conflict_skip_compaction.groovy | 2 ++
.../test_partial_update_with_delete_col_in_publish.groovy | 3 ++-
.../partial_update/test_partial_update_merge_type.groovy | 2 ++
4 files changed, 8 insertions(+), 1 deletion(-)
diff --git
a/regression-test/suites/fault_injection_p0/partial_update/test_delete_publish_skip_read.groovy
b/regression-test/suites/fault_injection_p0/partial_update/test_delete_publish_skip_read.groovy
index 0cc738d5675..aab4ef47c55 100644
---
a/regression-test/suites/fault_injection_p0/partial_update/test_delete_publish_skip_read.groovy
+++
b/regression-test/suites/fault_injection_p0/partial_update/test_delete_publish_skip_read.groovy
@@ -98,6 +98,8 @@ suite("test_delete_publish_skip_read", "nonConcurrent") {
t1.join()
t2.join()
+ sleep(2000)
+ sql "sync;"
order_qt_sql "select * from ${table1};"
sql "set skip_delete_sign=true;"
diff --git
a/regression-test/suites/fault_injection_p0/partial_update/test_partial_update_conflict_skip_compaction.groovy
b/regression-test/suites/fault_injection_p0/partial_update/test_partial_update_conflict_skip_compaction.groovy
index 08eba337af3..007c76ec24a 100644
---
a/regression-test/suites/fault_injection_p0/partial_update/test_partial_update_conflict_skip_compaction.groovy
+++
b/regression-test/suites/fault_injection_p0/partial_update/test_partial_update_conflict_skip_compaction.groovy
@@ -180,6 +180,8 @@ suite("test_partial_update_conflict_skip_compaction",
"nonConcurrent") {
t1.join()
t2.join()
+ sleep(2000)
+ sql "sync;"
order_qt_sql "select * from ${table1};"
check_rs_metas(3, {int startVersion, int endVersion, int numSegments,
int numRows, String overlapPb ->
diff --git
a/regression-test/suites/fault_injection_p0/partial_update/test_partial_update_with_delete_col_in_publish.groovy
b/regression-test/suites/fault_injection_p0/partial_update/test_partial_update_with_delete_col_in_publish.groovy
index a1d4409b0e6..1438b5b6df5 100644
---
a/regression-test/suites/fault_injection_p0/partial_update/test_partial_update_with_delete_col_in_publish.groovy
+++
b/regression-test/suites/fault_injection_p0/partial_update/test_partial_update_with_delete_col_in_publish.groovy
@@ -92,7 +92,8 @@ suite("test_partial_update_with_delete_col_in_publish",
"nonConcurrent") {
disable_block_in_publish()
threads.each { t -> t.join() }
-
+ sleep(2000)
+ sql "sync;"
qt_sql "select * from ${tableName} order by k;"
} catch(Exception e) {
logger.info(e.getMessage())
diff --git
a/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_merge_type.groovy
b/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_merge_type.groovy
index dfaa9aca306..663d7c2a0b5 100644
---
a/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_merge_type.groovy
+++
b/regression-test/suites/unique_with_mow_p0/partial_update/test_partial_update_merge_type.groovy
@@ -47,6 +47,7 @@ suite("test_partial_update_merge_type", "p0") {
UNIQUE KEY(`k`) DISTRIBUTED BY HASH(`k`) BUCKETS 1
PROPERTIES(
"replication_num" = "1",
+ "disable_auto_compaction" = "true",
"enable_unique_key_merge_on_write" = "true",
"store_row_column" = "${use_row_store}"); """
sql """insert into ${tableName} select number,number,number,number
from numbers("number"="9");"""
@@ -118,6 +119,7 @@ suite("test_partial_update_merge_type", "p0") {
PROPERTIES(
"replication_num" = "1",
"enable_unique_key_merge_on_write" = "true",
+ "disable_auto_compaction" = "true",
"function_column.sequence_type" = "BIGINT",
"store_row_column" = "${use_row_store}"); """
sql """insert into ${tableName}(k,c1,c2,c3,__DORIS_SEQUENCE_COL__)
select number,number,number,number,1 from numbers("number"="9");"""
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]