mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 06:22:28 +01:00
db674c9f87
Problem: the test syncs slave by a 'wait_condition' waiting until table t1 has 5000 rows. However, there is no guarantee that t1 makes it to the slave before the wait_condition. Fix: sync_slave_with_master just after t1 was created. mysql-test/suite/rpl/t/rpl_insert.test: Added sync_slave_with_master to ensure that table t1 is on slave before the slave executes wait_condition.
40 lines
1.1 KiB
Text
40 lines
1.1 KiB
Text
--echo #
|
|
--echo # Bug#20821: INSERT DELAYED fails to write some rows to binlog
|
|
--echo #
|
|
|
|
--source include/master-slave.inc
|
|
--source include/not_embedded.inc
|
|
--source include/not_windows.inc
|
|
|
|
--disable_warnings
|
|
CREATE SCHEMA IF NOT EXISTS mysqlslap;
|
|
USE mysqlslap;
|
|
--enable_warnings
|
|
|
|
CREATE TABLE t1 (id INT, name VARCHAR(64));
|
|
|
|
sync_slave_with_master;
|
|
connection master;
|
|
|
|
let $query = "INSERT DELAYED INTO t1 VALUES (1, 'Dr. No'), (2, 'From Russia With Love'), (3, 'Goldfinger'), (4, 'Thunderball'), (5, 'You Only Live Twice')";
|
|
--exec $MYSQL_SLAP --silent --concurrency=5 --iterations=200 --query=$query --delimiter=";"
|
|
|
|
# Wait until all the 5000 inserts has been inserted into the table
|
|
let $wait_condition= SELECT COUNT(*) = 5000 FROM mysqlslap.t1;
|
|
source include/wait_condition.inc;
|
|
SELECT COUNT(*) FROM mysqlslap.t1;
|
|
|
|
connection slave;
|
|
# Wait until all the 5000 inserts has been inserted into the table
|
|
let $wait_condition= SELECT COUNT(*) = 5000 FROM mysqlslap.t1;
|
|
source include/wait_condition.inc;
|
|
SELECT COUNT(*) FROM mysqlslap.t1;
|
|
|
|
--echo #
|
|
--echo # Cleanup
|
|
--echo #
|
|
|
|
connection master;
|
|
USE test;
|
|
DROP SCHEMA mysqlslap;
|
|
sync_slave_with_master;
|