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

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


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new 50450337904 [fix](testcase) fix p0 testcase rf_prune and explain_graph 
(#28549)
50450337904 is described below

commit 50450337904811dff30e08b57c64723d238a5131
Author: Kang <[email protected]>
AuthorDate: Mon Dec 18 21:39:50 2023 +0800

    [fix](testcase) fix p0 testcase rf_prune and explain_graph (#28549)
    
    * delete testcase group_commit_interval_ms in create table
    
    * delete min_load_replica_num
---
 regression-test/suites/nereids_p0/explain/explain_graph.groovy    | 8 ++------
 .../suites/nereids_rules_p0/runtime_filter/rf_prune.groovy        | 8 ++------
 2 files changed, 4 insertions(+), 12 deletions(-)

diff --git a/regression-test/suites/nereids_p0/explain/explain_graph.groovy 
b/regression-test/suites/nereids_p0/explain/explain_graph.groovy
index 5ffb776de99..305dad13284 100644
--- a/regression-test/suites/nereids_p0/explain/explain_graph.groovy
+++ b/regression-test/suites/nereids_p0/explain/explain_graph.groovy
@@ -35,13 +35,11 @@ suite("explain_graph") {
         DISTRIBUTED BY HASH(`a`) BUCKETS 10
         PROPERTIES (
         "replication_allocation" = "tag.location.default: 1",
-        "min_load_replica_num" = "-1",
         "is_being_synced" = "false",
         "storage_format" = "V2",
         "light_schema_change" = "true",
         "disable_auto_compaction" = "false",
-        "enable_single_replica_compaction" = "false",
-        "group_commit_interval_ms" = "10000"
+        "enable_single_replica_compaction" = "false"
         ); """
     
         sql "drop table if exists T2;"
@@ -56,13 +54,11 @@ suite("explain_graph") {
         DISTRIBUTED BY HASH(`a`) BUCKETS 10
         PROPERTIES (
         "replication_allocation" = "tag.location.default: 1",
-        "min_load_replica_num" = "-1",
         "is_being_synced" = "false",
         "storage_format" = "V2",
         "light_schema_change" = "true",
         "disable_auto_compaction" = "false",
-        "enable_single_replica_compaction" = "false",
-        "group_commit_interval_ms" = "10000"
+        "enable_single_replica_compaction" = "false"
         ); """
         // make sure "explain graph" could work with "insert select" 
         sql "explain graph insert into T2 select * from T1"
diff --git 
a/regression-test/suites/nereids_rules_p0/runtime_filter/rf_prune.groovy 
b/regression-test/suites/nereids_rules_p0/runtime_filter/rf_prune.groovy
index a4cee458a18..8c35ce3f9b9 100644
--- a/regression-test/suites/nereids_rules_p0/runtime_filter/rf_prune.groovy
+++ b/regression-test/suites/nereids_rules_p0/runtime_filter/rf_prune.groovy
@@ -33,13 +33,11 @@ suite("rf_prune") {
         DISTRIBUTED BY HASH(`id`) BUCKETS 10
         PROPERTIES (
         "replication_allocation" = "tag.location.default: 1",
-        "min_load_replica_num" = "-1",
         "is_being_synced" = "false",
         "storage_format" = "V2",
         "light_schema_change" = "true",
         "disable_auto_compaction" = "false",
-        "enable_single_replica_compaction" = "false",
-        "group_commit_interval_ms" = "10000"
+        "enable_single_replica_compaction" = "false"
         ); 
         """
     sql "drop table if exists B"
@@ -53,13 +51,11 @@ suite("rf_prune") {
         DISTRIBUTED BY HASH(`id`) BUCKETS 10
         PROPERTIES (
         "replication_allocation" = "tag.location.default: 1",
-        "min_load_replica_num" = "-1",
         "is_being_synced" = "false",
         "storage_format" = "V2",
         "light_schema_change" = "true",
         "disable_auto_compaction" = "false",
-        "enable_single_replica_compaction" = "false",
-        "group_commit_interval_ms" = "10000"
+        "enable_single_replica_compaction" = "false"
         ); 
         """
 


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

Reply via email to