Problem
We use the following binary log filter for filtering out some schemata.
binlog-ignore-db = mysql, information_schema, test
What is wrong with this filter it somehow does not work: :-(
Solution
there are different things to mention:
- The dash (
-) notation is for command line options (--binlog-ignore-db) the underscore (_) is for the MySQL configuration file (binlog_ignore_db = ...). The configuration accepts both but is is not good style. - Then because MySQL database names can contain special …