Comments - Using and Maintaining the Binary Log
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.
I think the below statement in the Example section is wrong:
"Assume the server has started with the option --binlog-ignore-db=employees. The following example is not logged if statement-based logging is used, and is logged with row-based logging.
USE customers; UPDATE employees.details SET bonus=bonus*1.2; "
The above statement is logged if statement-based logging is used and not logged if row-based logging used.
The same thing for the next example. The statements need to be corrected.
I've seen many mistakes like this in the documentation. It needs another round of editing! I'm cross referring MySQL documentation as well, for safer side !!
Thanks for the feedback, the examples have been fixed. If you spot other errors in the documentation, please point them out, or jump in and correct them yourself. The Knowledge Base is a community resource that anyone can contribute to.
That's great! Thanks