Commit ec58a1cc authored by Sergei Petrunia's avatar Sergei Petrunia

MariaRocks port: update test results

MariaDB produces warnings when INSERT IGNORE hits a duplicate (this
was introduced in MEV-5168)
parent d903396c
......@@ -46,6 +46,8 @@ a b
5 e
6 f
INSERT IGNORE INTO t1 (a,b) VALUES (1,'a'),(12345,'z');
Warnings:
Warning 1062 Duplicate entry '1' for key 'PRIMARY'
INSERT INTO t1 (a,b) VALUES (1,'a'),(12345,'z') ON DUPLICATE KEY UPDATE b = CONCAT(b,b);
SELECT a,b FROM t1;
a b
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment