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

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


The following commit(s) were added to refs/heads/branch-3.1 by this push:
     new 8150ae6958d branch-3.1: [fix](case) fix single replica load #54899 
(#54915)
8150ae6958d is described below

commit 8150ae6958d8eb2e0cf481a8a84b29d558293f4d
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Tue Aug 19 11:40:10 2025 +0800

    branch-3.1: [fix](case) fix single replica load #54899 (#54915)
    
    Cherry-picked from #54899
    
    Co-authored-by: Yongqiang YANG <[email protected]>
---
 regression-test/suites/load_p2/test_single_replica_load.groovy | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/regression-test/suites/load_p2/test_single_replica_load.groovy 
b/regression-test/suites/load_p2/test_single_replica_load.groovy
index 68d1e687744..29e9e21eab1 100644
--- a/regression-test/suites/load_p2/test_single_replica_load.groovy
+++ b/regression-test/suites/load_p2/test_single_replica_load.groovy
@@ -20,7 +20,10 @@
 // and modified by Doris.
 
 suite("test_single_replica_load", "p2, nonConcurrent") {
-    
+    if (isCloudMode()) {
+        return;
+    }
+
     def load_json_data = {table_name, file_name ->
         // load the json data
         streamLoad {
@@ -52,9 +55,7 @@ suite("test_single_replica_load", "p2, nonConcurrent") {
 
     sql "DROP TABLE IF EXISTS ${tableName}"
     setFeConfigTemporary([enable_inverted_index_v1_for_variant: true]) {
-        if (isCloudMode()) {
-            return;
-        }
+
         sql """
             CREATE TABLE IF NOT EXISTS ${tableName} (
                 k bigint,


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

Reply via email to