summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2012-09-06 10:08:09 +0200
committerSergei Golubchik <sergii@pisem.net>2012-09-06 10:08:09 +0200
commita0efc4bd7779e3fe9ef664a2254e8f9c5868afeb (patch)
tree33fa76f41bc473e7faf0079c741b8a416f2a2437 /mysql-test/suite/rpl/r
parentcaedd1992c0926f41e3fb5f8b6f430d9a2a827a9 (diff)
downloadmariadb-git-a0efc4bd7779e3fe9ef664a2254e8f9c5868afeb.tar.gz
MDEV-510 assert triggered by ./mtr --ps-protocol rpl_mdev382
The DELETE for emplicitly emptied MEMORY tables should be written directly to binlog.
Diffstat (limited to 'mysql-test/suite/rpl/r')
-rw-r--r--mysql-test/suite/rpl/r/rpl_mdev382.result4
1 files changed, 1 insertions, 3 deletions
diff --git a/mysql-test/suite/rpl/r/rpl_mdev382.result b/mysql-test/suite/rpl/r/rpl_mdev382.result
index b564dd8401e..bbc57006d0d 100644
--- a/mysql-test/suite/rpl/r/rpl_mdev382.result
+++ b/mysql-test/suite/rpl/r/rpl_mdev382.result
@@ -321,9 +321,7 @@ a`
# The DELETE statement should be correctly quoted
show binlog events in 'master-bin.000002' from <binlog_start>;
Log_name Pos Event_type Server_id End_log_pos Info
-master-bin.000002 # Query # # BEGIN
-master-bin.000002 # Query # # use `test`; DELETE FROM `db1``; select 'oops!'`.`t``1`
-master-bin.000002 # Query # # COMMIT
+master-bin.000002 # Query # # DELETE FROM `db1``; select 'oops!'`.`t``1`
include/start_slave.inc
# The table should be empty on the slave also.
SELECT * FROM `db1``; select 'oops!'`.`t``1`;