From: Bjorn Munch Date: February 3 2011 11:31am Subject: Re: bzr commit into mysql-next-mr-wl5569 branch (andrei.elkin:3271) WL#5754 List-Archive: http://lists.mysql.com/commits/130313 Message-Id: <20110203113142.GA25715@khepri15.norway.sun.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On 03/02 09.28, Andrei Elkin wrote: > === added file 'mysql-test/suite/rpl/t/rpl_parallel_multi_db.test' > --- a/mysql-test/suite/rpl/t/rpl_parallel_multi_db.test 1970-01-01 00:00:00 +0000 > +++ b/mysql-test/suite/rpl/t/rpl_parallel_multi_db.test 2011-02-03 09:28:27 +0000 > @@ -0,0 +1,123 @@ > +# > +# WL#5569 MTS > +# > +# The test verifies correctness of Query event parallelization when > +# a DML Query modifies multiple databases. > +# > + > +--source include/master-slave.inc > +--source include/have_binlog_format_statement.inc > + > +--disable_query_log > +call mtr.add_suppression('.*Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT.*'); Just a minor comment. This will work but you don't have to use a regexp in add_suppression which covers the entire line. So .* at the start and end here are superflous. If the message is very long I often reduce it to what I presume to be unique. No need to re-commit just for this little thing of course. :-) - Bjorn