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 d0aedaf98ef10aeb05a0c40d1b2b7b2bc4afec54 Author: qiye <[email protected]> AuthorDate: Thu Feb 29 11:08:42 2024 +0800 [fix](regression test)Make index compaction caset nonCouncurrent (#31520) Co-authored-by: Luennng <[email protected]> --- .../index_compaction/test_index_compaction_dup_keys.groovy | 2 +- .../index_compaction/test_index_compaction_null.groovy | 2 +- .../index_compaction/test_index_compaction_unique_keys.groovy | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_dup_keys.groovy b/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_dup_keys.groovy index cc8516a32d5..73a7cd46663 100644 --- a/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_dup_keys.groovy +++ b/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_dup_keys.groovy @@ -17,7 +17,7 @@ import org.codehaus.groovy.runtime.IOGroovyMethods -suite("test_index_compaction_dup_keys", "p0") { +suite("test_index_compaction_dup_keys", "nonConcurrent") { def tableName = "test_index_compaction_dup_keys" def backendId_to_backendIP = [:] def backendId_to_backendHttpPort = [:] diff --git a/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_null.groovy b/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_null.groovy index e80a97eb1af..849aaa50763 100644 --- a/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_null.groovy +++ b/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_null.groovy @@ -17,7 +17,7 @@ import org.codehaus.groovy.runtime.IOGroovyMethods -suite("test_index_compaction_null", "p0") { +suite("test_index_compaction_null", "nonConcurrent") { def tableName = "test_index_compaction_null_dups" def backendId_to_backendIP = [:] def backendId_to_backendHttpPort = [:] diff --git a/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_unique_keys.groovy b/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_unique_keys.groovy index 76970feb461..2ce46aafece 100644 --- a/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_unique_keys.groovy +++ b/regression-test/suites/inverted_index_p0/index_compaction/test_index_compaction_unique_keys.groovy @@ -17,7 +17,7 @@ import org.codehaus.groovy.runtime.IOGroovyMethods -suite("test_index_compaction_unique_keys", "p0") { +suite("test_index_compaction_unique_keys", "nonConcurrent") { def tableName = "test_index_compaction_unique_keys" def backendId_to_backendIP = [:] def backendId_to_backendHttpPort = [:] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
