diff options
author | Alexander Barkov <bar@mysql.com> | 2008-08-21 16:47:23 +0500 |
---|---|---|
committer | Alexander Barkov <bar@mysql.com> | 2008-08-21 16:47:23 +0500 |
commit | 762df2d05c47466404dd48823f3d5fc22f8fc3f7 (patch) | |
tree | d7373ca2777d73cc9c3284a463a35ad94d3452e3 /sql/log_event.h | |
parent | 0c5bc2eafc95cb20f332becd295c29be95149700 (diff) | |
download | mariadb-git-762df2d05c47466404dd48823f3d5fc22f8fc3f7.tar.gz |
Additional fix for bug#31455 (rpl decoder)
- Implementing --base64-format=decode-rows, to display
SQL-alike decoded row events without their BINLOG statements.
- Adding --base64-format=decode-rows into tests when
calling mysqlbinlog to avoid non-deterministic results
- Removing resetting of last_table_id in "RESET MASTER",
which appeared to be dangerous.
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index e1b00474361..2017c74ecab 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -580,6 +580,7 @@ enum enum_base64_output_mode { BASE64_OUTPUT_AUTO= 1, BASE64_OUTPUT_ALWAYS= 2, BASE64_OUTPUT_UNSPEC= 3, + BASE64_OUTPUT_DECODE_ROWS= 4, /* insert new output modes here */ BASE64_OUTPUT_MODE_COUNT }; |