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 359dfe909e5 branch-3.0: [test](case) skip unstable case in cloud mode 
#46274 (#46297)
359dfe909e5 is described below

commit 359dfe909e58d89e1e97a37513dbb4e34798da15
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jan 3 19:31:33 2025 +0800

    branch-3.0: [test](case) skip unstable case in cloud mode #46274 (#46297)
    
    Cherry-picked from #46274
    
    Co-authored-by: 924060929 <lanhuaj...@selectdb.com>
---
 .../suites/nereids_p0/cache/parse_sql_from_sql_cache.groovy         | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git 
a/regression-test/suites/nereids_p0/cache/parse_sql_from_sql_cache.groovy 
b/regression-test/suites/nereids_p0/cache/parse_sql_from_sql_cache.groovy
index 9e9e6507fa6..a9f833d7021 100644
--- a/regression-test/suites/nereids_p0/cache/parse_sql_from_sql_cache.groovy
+++ b/regression-test/suites/nereids_p0/cache/parse_sql_from_sql_cache.groovy
@@ -19,6 +19,9 @@ import java.util.stream.Collectors
 
 suite("parse_sql_from_sql_cache") {
     def assertHasCache = { String sqlStr ->
+        if (isCloudMode()) {
+            return
+        }
         explain {
             sql ("physical plan ${sqlStr}")
             contains("PhysicalSqlCache")
@@ -26,6 +29,9 @@ suite("parse_sql_from_sql_cache") {
     }
 
     def assertNoCache = { String sqlStr ->
+        if (isCloudMode()) {
+            return
+        }
         explain {
             sql ("physical plan ${sqlStr}")
             notContains("PhysicalSqlCache")


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to