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 d47e204324a61e..274a3b9f3a40b6 100644 --- a/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy +++ b/regression-test/pipeline/cloud_p0/conf/regression-conf-custom.groovy @@ -74,6 +74,10 @@ excludeDirectories = "000_the_start_sentinel_do_not_touch," + // keep this line "cloud/multi_cluster," + // run in specific regression pipeline "cloud_p0/multi_cluster," + // run in specific regression pipeline "cloud_p0/cache," + + "shape_check," + // run only in p0 is enough + "nereids_p0/cache," + // run only in p0 is enough + "nereids_rules_p0/mv/increment_create," + // run only in p0 is enough + "nereids_rules_p0/mv/genera_constant_sql," + // run only in p0 is enough "workload_manager_p1," + "nereids_rules_p0/subquery," + "backup_restore," + // not a case for cloud mode, no need to run diff --git a/regression-test/suites/export_p0/test_outfile_csv_compress.groovy b/regression-test/suites/export_p0/test_outfile_csv_compress.groovy index 01e5f0664407d6..e93f1a92c5771f 100644 --- a/regression-test/suites/export_p0/test_outfile_csv_compress.groovy +++ b/regression-test/suites/export_p0/test_outfile_csv_compress.groovy @@ -36,7 +36,7 @@ suite("test_outfile_csv_compress", "p0") { DISTRIBUTED BY HASH(name) PROPERTIES("replication_num" = "1"); """ sql """ INSERT INTO ${table_name} values(1, 'zhangsan');""" - for (int i = 0; i < 20; i++) { + for (int i = 0; i < 10; i++) { sql """ insert into ${table_name} select id + ${i}, concat(name, id + ${i}) from ${table_name};""" }