diff --git a/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy b/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy index 073cfc2508a6b2..9cdea9e489f0e5 100644 --- a/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy +++ b/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy @@ -50,6 +50,7 @@ excludeSuites = "000_the_start_sentinel_do_not_touch," + // keep this line as th "test_topn_fault_injection," + "auto_partition_in_partition_prune," + // inserted data in too many tablets, txn to large. not suitable for cloud. "one_col_range_partition," + // inserted data in too many tablets, txn to large. not suitable for cloud. + "shuffle_left_join,colocate_union_numbers,prune_bucket_with_bucket_shuffle_join,", // this feature is not picked to branch-3.0 "zzz_the_end_sentinel_do_not_touch" // keep this line as the last line excludeDirectories = "000_the_start_sentinel_do_not_touch," + // keep this line as the first line diff --git a/regression-test/suites/nereids_rules_p0/partition_prune/auto_partition.groovy b/regression-test/suites/nereids_rules_p0/partition_prune/auto_partition.groovy index ee6a40c7a0d9e0..0ffbcfbba6cbe7 100644 --- a/regression-test/suites/nereids_rules_p0/partition_prune/auto_partition.groovy +++ b/regression-test/suites/nereids_rules_p0/partition_prune/auto_partition.groovy @@ -15,7 +15,7 @@ // specific language governing permissions and limitations // under the License. -suite("auto_partition") { +suite("auto_partition_in_partition_prune") { sql "drop table if exists one_col_range_partition_date_func" sql """create table one_col_range_partition_date_func (a int, dt datetime not null, d date, c varchar(100)) duplicate key(a) auto partition by range(date_trunc(dt,'day')) () distributed by hash(a) properties("replication_num"="1");"""