summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2019-08-12 14:45:28 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2019-08-12 14:45:53 +0300
commit7a9e1fcd455bfa8e3d71fabb6b76769433567508 (patch)
treef236eafefede99552cf816cd364f77e913df641c
parent284c72eacf2074bf50c1930d5e8eb333367eba2f (diff)
downloadmariadb-git-7a9e1fcd455bfa8e3d71fabb6b76769433567508.tar.gz
MDEV-17614: Re-record a result
-rw-r--r--mysql-test/suite/binlog/r/binlog_unsafe.result2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/suite/binlog/r/binlog_unsafe.result b/mysql-test/suite/binlog/r/binlog_unsafe.result
index 48d9db44b05..e8de90d3422 100644
--- a/mysql-test/suite/binlog/r/binlog_unsafe.result
+++ b/mysql-test/suite/binlog/r/binlog_unsafe.result
@@ -2706,6 +2706,8 @@ Warnings:
Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. CREATE... REPLACE SELECT is unsafe because the order in which rows are retrieved by the SELECT determines which (if any) rows are replaced. This order cannot be predicted and may differ on master and the slave.
INSERT INTO insert_2_keys VALUES (1, 2)
ON DUPLICATE KEY UPDATE a=VALUES(a)+10, b=VALUES(b)+10;
+Warnings:
+Note 1592 Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT. INSERT... ON DUPLICATE KEY UPDATE on a table with more than one UNIQUE KEY is unsafe
DROP TABLE filler_table;
DROP TABLE insert_table;
DROP TABLE update_table;