branch-2.1: [fix](regression-test) Fix unstable regression test case due to trigger compaction failed #48228 (#48246)
Cherry-picked from #48228 Co-authored-by: Siyang Tang <tangsiyang@selectdb.com>
This commit is contained in:
committed by
GitHub
parent
c41d316114
commit
3ad9227ea1
@ -46,7 +46,7 @@ suite ("test_dup_keys_schema_change") {
|
||||
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
|
||||
DUPLICATE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
|
||||
BUCKETS 8
|
||||
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false" );
|
||||
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false", "disable_auto_compaction" = "true");
|
||||
"""
|
||||
|
||||
sql """ INSERT INTO ${tableName} VALUES
|
||||
|
||||
@ -42,7 +42,7 @@ suite ("test_uniq_keys_schema_change") {
|
||||
`min_dwell_time` INT DEFAULT "99999" COMMENT "用户最小停留时间")
|
||||
UNIQUE KEY(`user_id`, `date`, `city`, `age`, `sex`) DISTRIBUTED BY HASH(`user_id`)
|
||||
BUCKETS 8
|
||||
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false");
|
||||
PROPERTIES ( "replication_num" = "1", "light_schema_change" = "false", "disable_auto_compaction" = "true");
|
||||
"""
|
||||
|
||||
sql """ INSERT INTO schema_change_uniq_keys_regression_test VALUES
|
||||
|
||||
Reference in New Issue
Block a user