mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
bug#18487 UPDATE IGNORE not supported for unique constraint violation of non-primary key: updated test result
This commit is contained in:
parent
34cfad6486
commit
e576bf7fa3
1 changed files with 1 additions and 0 deletions
|
@ -27,6 +27,7 @@ pk1 b c
|
|||
4 1 1
|
||||
UPDATE t1 set pk1 = 1, c = 2 where pk1 = 4;
|
||||
ERROR 23000: Duplicate entry '' for key '*UNKNOWN*'
|
||||
UPDATE IGNORE t1 set pk1 = 1, c = 2 where pk1 = 4;
|
||||
select * from t1 order by pk1;
|
||||
pk1 b c
|
||||
0 0 0
|
||||
|
|
Loading…
Reference in a new issue