Bug #3461 multi-table DELETE replicated despite replicate-wild-ignore-table
Submitted: 13 Apr 2004 15:15 Modified: 13 Apr 2004 15:45
Reporter: Guilhem Bichot
Status: Closed
Category:Server: Replication Severity:S3 (Non-critical)
Version:4.0 OS:Any (all)
Assigned to: Guilhem Bichot Target Version:

[13 Apr 2004 15:15] Guilhem Bichot
Description:
This is NOT a duplicate of BUG#2527.

How to repeat:
Start slave with --replicate-wild-ignore-table=test.%
On master do:
use test;
create table t1 (a int);
create table t2 (a int);
insert into t1 values (1);
insert into t2 values (1);
delete t1.* from t1, t2 where t1.a = t2.a;
Then on slave you will get "table t1 does not exist", whereas it should have ignored the
statement.

Suggested fix:
fixing it now
[13 Apr 2004 15:45] Guilhem Bichot
Thank you for your bug report. This issue has been committed to our
source repository of that product and will be incorporated into the
next release.

If necessary, you can access the source repository and build the latest
available version, including the bugfix, yourself. More information 
about accessing the source trees is available at
    http://www.mysql.com/doc/en/Installing_source_tree.html

Additional info:

Fixed in ChangeSet@1.1776.1.1, 2004-04-13 22:40:16+02:00, guilhem@mysql.com