This is an automated email from the ASF dual-hosted git repository. zhangchen pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 60a0d8f4e12 [Fix](regression) Fix case `test_add_key_partial_update` (#47583) 60a0d8f4e12 is described below commit 60a0d8f4e12c0706141bcf5eb31271c148542f85 Author: bobhan1 <bao...@selectdb.com> AuthorDate: Mon Feb 10 20:49:53 2025 +0800 [Fix](regression) Fix case `test_add_key_partial_update` (#47583) ### What problem does this PR solve? https://github.com/apache/doris/pull/46985 forbid partial update on FE, so change the corresponding error msg in case. --- .../partial_update/test_add_key_partial_update.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regression-test/suites/fault_injection_p0/partial_update/test_add_key_partial_update.groovy b/regression-test/suites/fault_injection_p0/partial_update/test_add_key_partial_update.groovy index 61ba9d60ea8..ef3b5246c5d 100644 --- a/regression-test/suites/fault_injection_p0/partial_update/test_add_key_partial_update.groovy +++ b/regression-test/suites/fault_injection_p0/partial_update/test_add_key_partial_update.groovy @@ -53,7 +53,7 @@ suite("test_add_key_partial_update", "nonConcurrent") { Thread.sleep(1000) test { sql "delete from ${table1} where k1<=3;" - exception "Unable to do partial update on shadow index's tablet" + exception "Can't do partial update when table is doing schema change." } waitForSchemaChangeDone { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org