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

yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-4.1 by this push:
     new 9355f1009f8 [fix](case) test_p_seq_publish_read_from_old: disable auto 
compaction to stabilize qt_inspect (#64508)
9355f1009f8 is described below

commit 9355f1009f83bdc09316f833035b55821141c139
Author: shuke <[email protected]>
AuthorDate: Tue Jun 16 15:01:34 2026 +0800

    [fix](case) test_p_seq_publish_read_from_old: disable auto compaction to 
stabilize qt_inspect (#64508)
    
    ## Problem
    `test_p_seq_publish_read_from_old` is flaky on the branch-4.1 P0
    regression. The `qt_inspect` queries read physical rows
    (`skip_delete_sign` / `skip_delete_bitmap`); background auto compaction
    merges rowsets and changes the physical row count, so the inspected
    output drifts from the `.out`. The final logical data is correct — only
    the inspected physical rows fluctuate with compaction timing.
    
    ## Fix
    Add `"disable_auto_compaction" = "true"` to the table PROPERTIES,
    matching the sibling cases in the same directory, so the inspection is
    stable.
    
    ## Verification
    Ran the suite on a branch-4.1 local cluster (3 FE + 4 BE) — passes.
    
    🤖 Generated with [Claude Code](https://claude.com/claude-code)
    
    Co-authored-by: Claude Opus 4.8 (1M context) <[email protected]>
---
 .../partial_update/test_p_seq_publish_read_from_old.groovy             | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/regression-test/suites/unique_with_mow_p0/partial_update/test_p_seq_publish_read_from_old.groovy
 
b/regression-test/suites/unique_with_mow_p0/partial_update/test_p_seq_publish_read_from_old.groovy
index 81423436c06..c3964084ceb 100644
--- 
a/regression-test/suites/unique_with_mow_p0/partial_update/test_p_seq_publish_read_from_old.groovy
+++ 
b/regression-test/suites/unique_with_mow_p0/partial_update/test_p_seq_publish_read_from_old.groovy
@@ -38,7 +38,8 @@ suite("test_p_seq_publish_read_from_old") {
         "enable_unique_key_merge_on_write" = "true",
         "light_schema_change" = "true",
         "function_column.sequence_col" = "v1",
-        "store_row_column" = "false"); """
+        "store_row_column" = "false",
+        "disable_auto_compaction" = "true"); """
     sql """insert into ${tableName} 
values(1,100,1,1,1,1),(2,100,2,2,2,2),(3,100,3,3,3,3),(4,100,4,4,4,4);"""
     qt_sql "select k,v1,v2,v3,v4,v5 from ${tableName} order by k;"
 


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

Reply via email to