This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.2
in repository https://gitbox.apache.org/repos/asf/doris.git
commit 4bfeb55c882f3974014e4bcc775fe671b7c19dde
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Sep 23 08:36:04 2026 +0800
branch-4.1: [fix](case) Improve `test_tablet_size_semantics` robustness
#68337 (#68373)
Cherry-picked from #68337
Co-authored-by: deardeng <[email protected]>
---
.../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]