1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

This patch includes modification to the rpl_events test to limit

the SELECT in the test to only the expected rows. This helps
eliminate the possibility of spurious rows causing the test to
fail.
This commit is contained in:
cbell/Chuck@mysql_cab_desk.
2007-03-30 12:16:48 -04:00
parent c86d40617e
commit 5eb8096700
2 changed files with 6 additions and 6 deletions

View File

@ -34,7 +34,7 @@ SELECT db, name, status, originator FROM mysql.event WHERE db = 'test' AND name
--echo "in the master"
--enable_info
--replace_column 3 TIMESTAMP
SELECT * FROM t1;
SELECT * FROM t1 WHERE c = 'from justonce' OR c = 'manually' ORDER BY id;
--disable_info
sync_slave_with_master;
@ -42,7 +42,7 @@ sync_slave_with_master;
--echo "in the slave"
--enable_info
--replace_column 3 TIMESTAMP
SELECT * FROM t1;
SELECT * FROM t1 WHERE c = 'from justonce' OR c = 'manually' ORDER BY id;
--disable_info
SELECT db, name, status, originator FROM mysql.event WHERE db = 'test' AND name = 'justonce';