This is an automated email from the ASF dual-hosted git repository.
hello-stephen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 773aa0cb8e4 [fix](case) Improve `test_tablet_size_semantics`
robustness (#68337)
773aa0cb8e4 is described below
commit 773aa0cb8e462024ebfc2f445a998bbe6db373b5
Author: deardeng <[email protected]>
AuthorDate: Tue Sep 22 15:25:50 2026 +0800
[fix](case) Improve `test_tablet_size_semantics` robustness (#68337)
---
.../suites/cloud_p0/tablets/test_tablet_size_semantics.groovy | 6 ++++++
1 file changed, 6 insertions(+)
diff --git
a/regression-test/suites/cloud_p0/tablets/test_tablet_size_semantics.groovy
b/regression-test/suites/cloud_p0/tablets/test_tablet_size_semantics.groovy
index 673800f97f6..a38a0c60135 100644
--- a/regression-test/suites/cloud_p0/tablets/test_tablet_size_semantics.groovy
+++ b/regression-test/suites/cloud_p0/tablets/test_tablet_size_semantics.groovy
@@ -61,6 +61,12 @@ suite("test_tablet_size_semantics") {
"""
sql "sync"
+ // Querying the tablet's actual data forces the BE to sync_rowsets() for
it directly,
+ // instead of relying on it being picked up as a compaction candidate
(which can be
+ // starved for a long time on a busy cluster with many other tablets
competing for
+ // compaction slots) or the ~30min background staleness sweep.
+ sql "select * from ${tableName}"
+
def showTabletRows = sql_return_maparray("show tablets from ${tableName}")
assertTrue(showTabletRows.size() == 1)
def showTabletRow = showTabletRows[0]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]