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 4fe22d3d2cbfe4..125e49c5f81c24 100644 --- a/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy +++ b/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy @@ -45,6 +45,8 @@ excludeSuites = "000_the_start_sentinel_do_not_touch," + // keep this line as th "test_insert," + // txn insert "test_full_compaction_run_status," + "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. "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 @@ -60,6 +62,7 @@ excludeDirectories = "000_the_start_sentinel_do_not_touch," + // keep this line "ccr_mow_syncer_p0," + "hdfs_vault_p2," + "inject_hdfs_vault_p0," + + "plsql_p0," + // plsql is not developped any more, add by sk. "zzz_the_end_sentinel_do_not_touch" // keep this line as the last line max_failure_num = 50 diff --git a/regression-test/pipeline/p0/conf/regression-conf.groovy b/regression-test/pipeline/p0/conf/regression-conf.groovy index 4de192754251b6..204b5e114d957f 100644 --- a/regression-test/pipeline/p0/conf/regression-conf.groovy +++ b/regression-test/pipeline/p0/conf/regression-conf.groovy @@ -80,6 +80,7 @@ excludeDirectories = "000_the_start_sentinel_do_not_touch," + // keep this line "cloud_p0," + "nereids_rules_p0/subquery," + "workload_manager_p1," + + "plsql_p0," + // plsql is not developped any more, add by sk "zzz_the_end_sentinel_do_not_touch"// keep this line as the last line customConf1 = "test_custom_conf_value" 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");"""