diff options
author | Bill Qu <bill.qu@Oracle.com> | 2013-04-27 16:04:54 +0800 |
---|---|---|
committer | Bill Qu <bill.qu@Oracle.com> | 2013-04-27 16:04:54 +0800 |
commit | 0424897cff5a14caf06632a3abeb691a7f40c866 (patch) | |
tree | ebca14ab2f0888ea1aacc5f6f0c2aa130f1b68b8 /sql/share/errmsg-utf8.txt | |
parent | 9eb9624fa8bae6e83bd7a49fd53de8f47025dc52 (diff) | |
download | mariadb-git-0424897cff5a14caf06632a3abeb691a7f40c866.tar.gz |
Bug #13004581 BLACKHOLE BINARY LOG WITH ROW IGNORES UPDATE AND DELETE STATEMENTS
When logging to the binary log in row, updates and deletes to a BLACKHOLE
engine table are skipped.
It is impossible to log binary log in row format for updates and deletes to
a BLACKHOLE engine table, as no row events can be generated in these cases.
After fix, generate a warning for UPDATE/DELETE statements that modify a
BLACKHOLE table, as row events are not logged in row format.
Diffstat (limited to 'sql/share/errmsg-utf8.txt')
-rw-r--r-- | sql/share/errmsg-utf8.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/share/errmsg-utf8.txt b/sql/share/errmsg-utf8.txt index e7ef0f74f1e..e3bdf3fc8ef 100644 --- a/sql/share/errmsg-utf8.txt +++ b/sql/share/errmsg-utf8.txt @@ -6506,6 +6506,8 @@ ER_UNSUPPORTED_ENGINE ER_BINLOG_UNSAFE_AUTOINC_NOT_FIRST eng "INSERT into autoincrement field which is not the first part in the composed primary key is unsafe." +WARN_ON_BLOCKHOLE_IN_RBR + eng "Row events are not logged for %s statements that modify BLACKHOLE tables in row format. Table(s): '%-.192s'" # # End of 5.5 error messages. # |