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 b2f96690f8e branch-3.0: [fix](case) fix single replica load #54899
(#54914)
b2f96690f8e is described below
commit b2f96690f8e5455024ccbd603bf4f544a977ebf8
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Aug 18 09:19:44 2025 +0800
branch-3.0: [fix](case) fix single replica load #54899 (#54914)
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]