Skip to content

Commit

Permalink
[regression-test](fix) remove some un-suitable test cases (#45984)
Browse files Browse the repository at this point in the history
### What problem does this PR solve?

Issue Number: close #xxx

Related PR: #xxx

Problem Summary:
plsql is not under developed, skip all cases.
"auto_partition_in_partition_prune" and "one_col_range_partition" insert
data in too many tablets, txn to large. not suitable for cloud.
  • Loading branch information
shuke987 authored Dec 26, 2024
1 parent 512f97a commit b28adb5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions regression-test/pipeline/p0/conf/regression-conf.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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");"""
Expand Down

0 comments on commit b28adb5

Please sign in to comment.