← Back to team overview

maria-discuss team mailing list archive

Re: Don't replicate procedures in the mysql database

 

Thanks to everyone

Here is the solution:

On the slave:

          Replicate_Ignore_DB: mysql
           Replicate_Do_Table:
       Replicate_Ignore_Table:
      Replicate_Wild_Do_Table: foo.%
  Replicate_Wild_Ignore_Table:


On the master:

USE mysql;
CREATE PROCEDURE whatever() BEGIN END;


References