From 1681a64c8e137d1d7229749b27c46ea1ee7d75bc Mon Sep 17 00:00:00 2001 From: stella liu Date: Wed, 19 Nov 2025 10:41:06 -0500 Subject: [PATCH] Bug #119302: Fix insert statement in rpl_parallel_multi_db test The test used the wrong variable in one INSERT statement, causing values inserted on the master to differ from the expected values on the replica. This led to inconsistent behavior when running with parallel replication workers. Fixed by replacing the incorrect variable with the intended one. --- mysql-test/suite/rpl/t/rpl_parallel_multi_db.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-test/suite/rpl/t/rpl_parallel_multi_db.test b/mysql-test/suite/rpl/t/rpl_parallel_multi_db.test index 202ae94277b8..3366d8fa8cea 100644 --- a/mysql-test/suite/rpl/t/rpl_parallel_multi_db.test +++ b/mysql-test/suite/rpl/t/rpl_parallel_multi_db.test @@ -201,7 +201,7 @@ while ($k) { let $n= `select floor(rand()*$dbs + 1)`; let $m= `select floor(rand()*$tables + 1)`; - eval insert into d$n.t$n values (2); + eval insert into d$n.t$m values (2); dec $k; } --enable_warnings