Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
Description
mysql_upgrade's documentation says that --write-binlog is enabled by default:
--write-binlog All commands including those run by mysqlcheck are written to the binary log. Enabled by default. Use --skip-write-binlog when commands should not be sent to replication slaves.
|
https://mariadb.com/kb/en/library/mysql_upgrade/#command-line-options
However, this does not seem to be the case in 10.1 or 10.2. It is disabled by default:
$ mysql_upgrade --help | grep write-binlog
|
--write-binlog All commands including those, issued by mysqlcheck, are
|
write-binlog FALSE
|
The documentation should probably mention which version this default changed.