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 9a6f665c023 branch-3.1: [chore](case) fix some failure cases #56140
(#56167)
9a6f665c023 is described below
commit 9a6f665c023e40306007194568134ad9ce8b4e71
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Sep 19 10:51:48 2025 +0800
branch-3.1: [chore](case) fix some failure cases #56140 (#56167)
Cherry-picked from #56140
Co-authored-by: Yongqiang YANG <[email protected]>
---
.../suites/load_p0/routine_load/test_black_list.groovy | 4 ++++
regression-test/suites/s3_vault/default_vault_p2/load.groovy | 8 ++++++++
regression-test/suites/s3_vault/multi_vault_p2/load.groovy | 8 ++++++++
regression-test/suites/ssb_sf1_p2/load.groovy | 8 ++++++++
4 files changed, 28 insertions(+)
diff --git a/regression-test/suites/load_p0/routine_load/test_black_list.groovy
b/regression-test/suites/load_p0/routine_load/test_black_list.groovy
index 9b1e2726f9d..29fc336492b 100644
--- a/regression-test/suites/load_p0/routine_load/test_black_list.groovy
+++ b/regression-test/suites/load_p0/routine_load/test_black_list.groovy
@@ -21,6 +21,10 @@ import org.apache.kafka.clients.producer.ProducerRecord
import org.apache.kafka.clients.producer.ProducerConfig
suite("test_black_list","nonConcurrent,p0") {
+ if (isCloudMode()) {
+ return;
+ }
+
String enabled = context.config.otherConfigs.get("enableKafkaTest")
if (enabled != null && enabled.equalsIgnoreCase("true")) {
// 1. send data
diff --git a/regression-test/suites/s3_vault/default_vault_p2/load.groovy
b/regression-test/suites/s3_vault/default_vault_p2/load.groovy
index 62edda98e65..3031962874c 100644
--- a/regression-test/suites/s3_vault/default_vault_p2/load.groovy
+++ b/regression-test/suites/s3_vault/default_vault_p2/load.groovy
@@ -22,6 +22,14 @@
// Note: To filter out tables from sql files, use the following one-liner
comamnd
// sed -nr 's/.*tables: (.*)$/\1/gp' /path/to/*.sql | sed -nr 's/,/\n/gp' |
sort | uniq
suite("load") {
+ try {
+ sql """ show storage vaults; """
+ } catch (Exception e) {
+ log.info("show storage vaults failed: ${e.message}")
+ if (e.message.contains("doesn't support storage vault")) {
+ return;
+ }
+ }
sql """
CREATE STORAGE VAULT IF NOT EXISTS default_vault_ssb_flat_hdfs_vault_s3
diff --git a/regression-test/suites/s3_vault/multi_vault_p2/load.groovy
b/regression-test/suites/s3_vault/multi_vault_p2/load.groovy
index cc05cba69b6..83f0765b940 100644
--- a/regression-test/suites/s3_vault/multi_vault_p2/load.groovy
+++ b/regression-test/suites/s3_vault/multi_vault_p2/load.groovy
@@ -22,6 +22,14 @@
// Note: To filter out tables from sql files, use the following one-liner
comamnd
// sed -nr 's/.*tables: (.*)$/\1/gp' /path/to/*.sql | sed -nr 's/,/\n/gp' |
sort | uniq
suite("load") {
+ try {
+ sql """ show storage vaults; """
+ } catch (Exception e) {
+ log.info("show storage vaults failed: ${e.message}")
+ if (e.message.contains("doesn't support storage vault")) {
+ return;
+ }
+ }
sql """
CREATE STORAGE VAULT IF NOT EXISTS multi_vault_ssb_hdfs_vault_s3
diff --git a/regression-test/suites/ssb_sf1_p2/load.groovy
b/regression-test/suites/ssb_sf1_p2/load.groovy
index 694f22c5b65..8be889208af 100644
--- a/regression-test/suites/ssb_sf1_p2/load.groovy
+++ b/regression-test/suites/ssb_sf1_p2/load.groovy
@@ -22,6 +22,14 @@
// Note: To filter out tables from sql files, use the following one-liner
comamnd
// sed -nr 's/.*tables: (.*)$/\1/gp' /path/to/*.sql | sed -nr 's/,/\n/gp' |
sort | uniq
suite("load") {
+ try {
+ sql """ show storage vaults; """
+ } catch (Exception e) {
+ log.info("show storage vaults failed: ${e.message}")
+ if (e.message.contains("doesn't support storage vault")) {
+ return;
+ }
+ }
// ssb_sf1_p1 is writted to test unique key table merge correctly.
// It creates unique key table and sets bucket num to 1 in order to make
sure that
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]