This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 06c80d8708314b6e1115eda21d5417c484eaa924 Author: airborne12 <[email protected]> AuthorDate: Wed Feb 28 17:47:52 2024 +0800 [Fix](regression) add disable_auto_compaction for show data (#31519) --- .../suites/inverted_index_p0/test_show_data.groovy | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/regression-test/suites/inverted_index_p0/test_show_data.groovy b/regression-test/suites/inverted_index_p0/test_show_data.groovy index 92e16a14fd3..147d011b718 100644 --- a/regression-test/suites/inverted_index_p0/test_show_data.groovy +++ b/regression-test/suites/inverted_index_p0/test_show_data.groovy @@ -36,7 +36,8 @@ suite("test_show_data", "p0") { DUPLICATE KEY(`@timestamp`) DISTRIBUTED BY HASH(`@timestamp`) BUCKETS 1 PROPERTIES ( - "replication_allocation" = "tag.location.default: 1" + "replication_allocation" = "tag.location.default: 1", + "disable_auto_compaction" = "true" ); """ } @@ -54,7 +55,8 @@ suite("test_show_data", "p0") { DUPLICATE KEY(`@timestamp`) DISTRIBUTED BY HASH(`@timestamp`) BUCKETS 1 PROPERTIES ( - "replication_allocation" = "tag.location.default: 1" + "replication_allocation" = "tag.location.default: 1", + "disable_auto_compaction" = "true" ); """ } @@ -206,7 +208,8 @@ suite("test_show_data_for_bkd", "p0") { DUPLICATE KEY(`@timestamp`) DISTRIBUTED BY HASH(`@timestamp`) BUCKETS 1 PROPERTIES ( - "replication_allocation" = "tag.location.default: 1" + "replication_allocation" = "tag.location.default: 1", + "disable_auto_compaction" = "true" ); """ } @@ -224,7 +227,8 @@ suite("test_show_data_for_bkd", "p0") { DUPLICATE KEY(`@timestamp`) DISTRIBUTED BY HASH(`@timestamp`) BUCKETS 1 PROPERTIES ( - "replication_allocation" = "tag.location.default: 1" + "replication_allocation" = "tag.location.default: 1", + "disable_auto_compaction" = "true" ); """ } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
