This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 76ee8ab8c6f [chore](case) fix some failure cases (#56140)
76ee8ab8c6f is described below
commit 76ee8ab8c6f11be0c1e4f1d1c3626a8c652021e6
Author: Yongqiang YANG <[email protected]>
AuthorDate: Wed Sep 17 22:15:10 2025 +0800
[chore](case) fix some failure cases (#56140)
---
.../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]