Skip to content

Commit ec58a1c

Browse files
committed
MariaRocks port: update test results
MariaDB produces warnings when INSERT IGNORE hits a duplicate (this was introduced in MEV-5168)
1 parent d903396 commit ec58a1c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

storage/rocksdb/mysql-test/rocksdb/r/insert_with_keys.result

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ a b
4646
5 e
4747
6 f
4848
INSERT IGNORE INTO t1 (a,b) VALUES (1,'a'),(12345,'z');
49+
Warnings:
50+
Warning 1062 Duplicate entry '1' for key 'PRIMARY'
4951
INSERT INTO t1 (a,b) VALUES (1,'a'),(12345,'z') ON DUPLICATE KEY UPDATE b = CONCAT(b,b);
5052
SELECT a,b FROM t1;
5153
a b

0 commit comments

Comments
 (0)