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 c13991fb393 branch-3.1: [fix](test) skip ingestion load test (#57564)
c13991fb393 is described below

commit c13991fb39343a084dcb27e574fbd2918a7f210a
Author: Mingyu Chen (Rayner) <[email protected]>
AuthorDate: Mon Nov 3 11:19:16 2025 +0800

    branch-3.1: [fix](test) skip ingestion load test (#57564)
---
 .../suites/load_p0/ingestion_load/test_ingestion_load.groovy        | 5 +++++
 .../load_p0/ingestion_load/test_ingestion_load_alter_column.groovy  | 4 ++++
 .../ingestion_load/test_ingestion_load_alter_partition.groovy       | 4 ++++
 .../load_p0/ingestion_load/test_ingestion_load_drop_table.groovy    | 6 +++++-
 .../load_p0/ingestion_load/test_ingestion_load_multi_table.groovy   | 6 +++++-
 .../ingestion_load/test_ingestion_load_with_inverted_index.groovy   | 4 ++++
 .../ingestion_load/test_ingestion_load_with_partition.groovy        | 6 +++++-
 7 files changed, 32 insertions(+), 3 deletions(-)

diff --git 
a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load.groovy 
b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load.groovy
index 74f5f9398fe..8e4a40fe7c5 100644
--- a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load.groovy
+++ b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load.groovy
@@ -21,6 +21,11 @@ import java.nio.file.StandardCopyOption
 
 suite('test_ingestion_load', 'p0,external') {
 
+    // deprecated, just skip
+    if (true) {
+        return;
+    }
+
     def testIngestLoadJob = { testTable, loadLabel, String dataFile , filesize 
->
 
         sql "TRUNCATE TABLE ${testTable}"
diff --git 
a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_alter_column.groovy
 
b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_alter_column.groovy
index a4f9617ca76..4e0ab85e0f0 100644
--- 
a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_alter_column.groovy
+++ 
b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_alter_column.groovy
@@ -20,6 +20,10 @@ import java.nio.file.Paths
 import java.nio.file.StandardCopyOption
 
 suite('test_ingestion_load_alter_column', 'p0,external') {
+    // deprecated, just skip
+    if (true) {
+        return;
+    }
 
     def testIngestLoadJob = { testTable, loadLabel, dataFile, alterAction ->
 
diff --git 
a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_alter_partition.groovy
 
b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_alter_partition.groovy
index 56002a7318b..382fed52732 100644
--- 
a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_alter_partition.groovy
+++ 
b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_alter_partition.groovy
@@ -20,6 +20,10 @@ import java.nio.file.Paths
 import java.nio.file.StandardCopyOption
 
 suite('test_ingestion_load_alter_partition', 'p0,external') {
+    // deprecated, just skip
+    if (true) {
+        return;
+    }
 
     def testIngestLoadJob = { testTable, loadLabel, dataFiles, alterAction ->
 
diff --git 
a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_drop_table.groovy
 
b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_drop_table.groovy
index c5b5fc90de9..6f1d8552615 100644
--- 
a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_drop_table.groovy
+++ 
b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_drop_table.groovy
@@ -20,6 +20,10 @@ import java.nio.file.Paths
 import java.nio.file.StandardCopyOption
 
 suite('test_ingestion_load_drop_table', 'p0,external') {
+    // deprecated, just skip
+    if (true) {
+        return;
+    }
 
     def testIngestLoadJob = { testTable, loadLabel, dataFile, alterAction ->
 
@@ -192,4 +196,4 @@ suite('test_ingestion_load_drop_table', 'p0,external') {
 
     }
 
-}
\ No newline at end of file
+}
diff --git 
a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_multi_table.groovy
 
b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_multi_table.groovy
index 34de65761d0..e401867252a 100644
--- 
a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_multi_table.groovy
+++ 
b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_multi_table.groovy
@@ -20,6 +20,10 @@ import java.nio.file.Paths
 import java.nio.file.StandardCopyOption
 
 suite('test_ingestion_load_multi_table', 'p0,external') {
+    // deprecated, just skip
+    if (true) {
+        return;
+    }
 
     def testIngestLoadJob = { loadLabel, testTable1, testTable2, dataFile1, 
dataFile2 ->
 
@@ -205,4 +209,4 @@ suite('test_ingestion_load_multi_table', 'p0,external') {
 
     }
 
-}
\ No newline at end of file
+}
diff --git 
a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_with_inverted_index.groovy
 
b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_with_inverted_index.groovy
index 08e1aeea353..17406c4aeb3 100644
--- 
a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_with_inverted_index.groovy
+++ 
b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_with_inverted_index.groovy
@@ -20,6 +20,10 @@ import java.nio.file.Paths
 import java.nio.file.StandardCopyOption
 
 suite('test_ingestion_load_with_inverted_index', 'p0,external') {
+    // deprecated, just skip
+    if (true) {
+        return;
+    }
 
     def testIngestLoadJob = { testTable, loadLabel, String dataFile ->
 
diff --git 
a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_with_partition.groovy
 
b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_with_partition.groovy
index c7843d5a866..a566636a059 100644
--- 
a/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_with_partition.groovy
+++ 
b/regression-test/suites/load_p0/ingestion_load/test_ingestion_load_with_partition.groovy
@@ -20,6 +20,10 @@ import java.nio.file.Paths
 import java.nio.file.StandardCopyOption
 
 suite('test_ingestion_load_with_partition', 'p0,external') {
+    // deprecated, just skip
+    if (true) {
+        return;
+    }
 
     def testIngestLoadJob = { testTable, loadLabel, dataFiles ->
 
@@ -157,4 +161,4 @@ suite('test_ingestion_load_with_partition', 'p0,external') {
 
     }
 
-}
\ No newline at end of file
+}


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

Reply via email to