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

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


The following commit(s) were added to refs/heads/branch-3.0 by this push:
     new f2d9d7dcf5e branch-3.0: [fix](regression) Fix cached cloud partition 
version #54092 (#54209)
f2d9d7dcf5e is described below

commit f2d9d7dcf5ef3010ac24b36967febe04cbf4496c
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sun Aug 3 10:45:43 2025 +0800

    branch-3.0: [fix](regression) Fix cached cloud partition version #54092 
(#54209)
    
    Cherry-picked from #54092
    
    Co-authored-by: Gavin Chou <[email protected]>
---
 .../suites/cloud_p0/version/test_fe_cached_partition_version.groovy   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/regression-test/suites/cloud_p0/version/test_fe_cached_partition_version.groovy
 
b/regression-test/suites/cloud_p0/version/test_fe_cached_partition_version.groovy
index 0cccfa54321..8ce1359861d 100644
--- 
a/regression-test/suites/cloud_p0/version/test_fe_cached_partition_version.groovy
+++ 
b/regression-test/suites/cloud_p0/version/test_fe_cached_partition_version.groovy
@@ -142,14 +142,14 @@ suite("test_fe_cached_partition_version", 'docker') {
                 insert_sql """INSERT INTO ${tbl} VALUES ('Guangzhou', 1})""", 1
                 sql """set global cloud_partition_version_cache_ttl_ms=0"""
                 result = sql_return_maparray """ select * from ${tbl} """
-                assertEquals(6, result.size())
+                assertEquals(7, result.size())
 
                 insert_sql """INSERT INTO ${tbl} VALUES ('Shanghai', 1})""", 1
                 insert_sql """INSERT INTO ${tbl} VALUES ('Guangzhou', 1})""", 1
                 insert_sql """INSERT INTO ${tbl} VALUES ('Beijing', 1})""", 1
                 // data present immediately without any cached versions
                 result = sql_return_maparray """ select * from ${tbl} """
-                assertEquals(9, result.size())
+                assertEquals(10, result.size())
             } finally {
             }
         }


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

Reply via email to