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 22:03:22 -0600 |
commit | 13e782eb84441d0c2ba1ce9d0109a7534d1995fa (patch) | |
tree | 31e6764fe312e792301b7ee57876f65977899eb8 /man/mysqlbinlog.1 | |
parent | 34340fb501f97d7289c165dd6599a3942087bc41 (diff) | |
download | mariadb-git-10.6-MDEV-25222.tar.gz |
MDEV-25222: mysqlbinlog --base64-output wrong option default drops BINLOG from output10.6-MDEV-25222
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/mysqlbinlog.1')
-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 3d12a8fa083..633300bb7c5 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 |