diff options
author | Jim Winstead <jimw@mysql.com> | 2009-05-15 13:25:22 -0700 |
---|---|---|
committer | Jim Winstead <jimw@mysql.com> | 2009-05-15 13:25:22 -0700 |
commit | 2a4e1220c8a382e4f7d15da714d465558b0de685 (patch) | |
tree | 00787a19994013819407c77707786988b9a358f7 /client | |
parent | 261238b9247e6a9c1e258a45fd138c29ed39d5c3 (diff) | |
download | mariadb-git-2a4e1220c8a382e4f7d15da714d465558b0de685.tar.gz |
Add usage for --base64-output=DECODE-ROWS and note that UNSPEC is
intentionally unmentioned (it is just a placeholder). (Bug #41403)
Diffstat (limited to 'client')
-rw-r--r-- | client/mysqlbinlog.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/mysqlbinlog.cc b/client/mysqlbinlog.cc index 2c74d745f01..aeaf49b5a15 100644 --- a/client/mysqlbinlog.cc +++ b/client/mysqlbinlog.cc @@ -932,10 +932,13 @@ static struct my_option my_long_options[] = 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}, #endif {"base64-output", OPT_BASE64_OUTPUT_MODE, + /* 'unspec' is not mentioned because it is just a placeholder. */ "Determine when the output statements should be base64-encoded BINLOG " "statements: 'never' disables it and works only for binlogs without " "row-based events; 'auto' is the default and prints base64 only when " "necessary (i.e., for row-based events and format description events); " + "'decode-rows' suppresses BINLOG statements for row events, but does " + "not exit as an error if a row event is found, unlike 'never'; " "'always' prints base64 whenever possible. 'always' is for debugging " "only and should not be used in a production system. The default is " "'auto'. --base64-output is a short form for --base64-output=always." |