Comment 2 for bug 1336734

Revision history for this message
Giuseppe L (g-liguori) wrote :

Hi, i encountered the same problem.
Fixed with this change in this array

  my %ignore_code = (
      # Error: 1592 SQLSTATE: HY000 (ER_BINLOG_UNSAFE_STATEMENT)
      # Message: Statement may not be safe to log in statement format.
      # Ignore this warning because we have purposely set statement-based
      # replication.
      1592 => 1,
      # Error: 1062 SQLSTATE: 23000 ( ER_DUP_ENTRY )
      # Message: Duplicate entry '%ld' for key '%s'
      # MariaDB 5.5.28+ has this as a warning; See https://bugs.launchpad.net/percona-toolkit/+bug/1099836
      1062 => 1,

#added by Giuseppe
      1048 => 1,
   );

because 1048 it's just a warning to ignore.