This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.0 by this push:
new dad27b43b77 branch-4.0: [fix](test) isolate streaming mysql dup job
name (#65270)
dad27b43b77 is described below
commit dad27b43b773de01588c7d29b1db3306e0112370
Author: shuke <[email protected]>
AuthorDate: Tue Jul 7 09:51:03 2026 +0800
branch-4.0: [fix](test) isolate streaming mysql dup job name (#65270)
## Summary
- Fix branch-4.0 External Regression flaky failure in
`test_streaming_mysql_job`.
- `test_streaming_mysql_job_dup` used the same streaming job name as
`test_streaming_mysql_job`, so concurrent execution could drop the main
case job while it was waiting for CDC incremental data.
- Use an isolated job name for the dup case, matching branch-4.1/master
behavior.
---
.../suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_dup.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_dup.groovy
b/regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_dup.groovy
index ecfd4a36cf3..2ddacebde16 100644
---
a/regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_dup.groovy
+++
b/regression-test/suites/job_p0/streaming_job/cdc/test_streaming_mysql_job_dup.groovy
@@ -16,7 +16,7 @@
// under the License.
suite("test_streaming_mysql_job_dup",
"p0,external,mysql,external_docker,external_docker_mysql,nondatalake") {
- def jobName = "test_streaming_mysql_job_name"
+ def jobName = "test_streaming_mysql_job_name_dup"
def currentDb = (sql "select database()")[0][0]
def table1 = "test_streaming_mysql_job_dup"
def mysqlDb = "test_cdc_db"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]