diff options
author | Brandon Nesterenko <brandon.nesterenko@mariadb.com> | 2021-05-12 11:46:58 -0600 |
---|---|---|
committer | Brandon Nesterenko <brandon.nesterenko@mariadb.com> | 2021-05-17 14:38:46 -0600 |
commit | 81402c131875c5fc2c3c4078bc12770304a48861 (patch) | |
tree | dc86d8c504f5250fac014530263273388699ad72 /man | |
parent | 740917620a5c1443472dbc62b357b456177f78e1 (diff) | |
download | mariadb-git-81402c131875c5fc2c3c4078bc12770304a48861.tar.gz |
MDEV-25222: mysqlbinlog --base64-output wrong option default drops BINLOG from output
Problem:
=======
The ALWAYS option of the mariadb-binlog --base64-output flag
formats its output incorrectly. This option is deprecated, and
MySQL 8.0 has removed it entirely.
Solution:
========
Adhere to MySQL and remove this option from MariaDB.
Behavioral Changes:
==================
Use Case: ./mariadb-binlog --base64-output
Previous Behavior: Sets base64-output mode to always
New Behavior: Error message indicating incomplete argument
Use Case: ./mariadb-binlog --base64-output=always
Previous Behavior: Sets base64-output mode to always
New Behavior: Error message indicating invalid argument value
Reviewed By:
==========
Andrei Elkin: <andrei.elkin@mariadb.com>
Diffstat (limited to 'man')
-rw-r--r-- | man/mysqlbinlog.1 | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/man/mysqlbinlog.1 b/man/mysqlbinlog.1 index c475f8a9887..42eb1b38272 100644 --- a/man/mysqlbinlog.1 +++ b/man/mysqlbinlog.1 @@ -141,7 +141,7 @@ Display a help message and exit\&. .\} .\" mysqlbinlog: base64-output option .\" base64-output option: mysqlbinlog -\fB\-\-base64\-output[=\fR\fB\fIvalue\fR\fR\fB]\fR +\fB\-\-base64\-output=\fR\fB\fIvalue\fR\fR\fB\fR .sp This option determines when events should be displayed encoded as base\-64 strings using BINLOG @@ -192,22 +192,6 @@ to re\-execute binary log file contents\&. The other option values are intended .sp -1 .IP \(bu 2.3 .\} -ALWAYS -displays -BINLOG -statements whenever possible\&. This is the implied value if the option is given as -\fB\-\-base64\-output\fR -without a value\&. Both ALWAYS and not giving a value are deprecated. -.RE -.sp -.RS 4 -.ie n \{\ -\h'-04'\(bu\h'+03'\c -.\} -.el \{\ -.sp -1 -.IP \(bu 2.3 -.\} NEVER causes BINLOG |