diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2021-10-13 12:03:32 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2021-10-13 12:03:32 +0300 |
commit | a736a3174a4e7c0d92a38901ae61f563d4afede7 (patch) | |
tree | 348d15f7c9cc883e86d852fbddc780f506669ee4 /man/mysql.1 | |
parent | b44e12fef176bfc0884fb2c5f4ba7f42bf054f44 (diff) | |
parent | 4a7dfda373ff9e28e4f4f35bad76cbfc20934a9a (diff) | |
download | mariadb-git-a736a3174a4e7c0d92a38901ae61f563d4afede7.tar.gz |
Merge 10.3 into 10.4
Diffstat (limited to 'man/mysql.1')
-rw-r--r-- | man/mysql.1 | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/man/mysql.1 b/man/mysql.1 index c2eda6d7e72..2acb71656a0 100644 --- a/man/mysql.1 +++ b/man/mysql.1 @@ -206,7 +206,14 @@ option\&. .\" binary-mode option: mysql \fB\-\-binary\-mode\fR .sp -By default, ASCII '\e0' is disallowed and '\er\en' is translated to '\en'\&. This switch turns off both features, and also turns off parsing of all client commands except \eC and DELIMITER, in non-interactive mode (for input piped to mysql or loaded using the 'source' command)\&. This is necessary when processing output from mysqlbinlog that may contain blobs\&. +Binary mode allows certain character sequences to be processed as data that +would otherwise be treated with a special meaning by the parser\&. +Specifically, this switch turns off parsing of all client commands except \eC +and DELIMITER in non-interactive mode (i\&.e\&., when binary mode is combined +with either 1) piped input, 2) the --batch mysql option, or 3) the 'source' +command)\&. Also, in binary mode, occurrences of '\er\en' and ASCII '\e0' are +preserved within strings, whereas by default, '\er\en' is translated to '\en' +and '\e0' is disallowed in user input\&. .RE .sp .RS 4 |