diff options
author | unknown <mskold/marty@mysql.com/quadfish.(none)> | 2007-12-06 17:15:21 +0100 |
---|---|---|
committer | unknown <mskold/marty@mysql.com/quadfish.(none)> | 2007-12-06 17:15:21 +0100 |
commit | f9bae745058e8eeb27c8a55744effb8afc38474b (patch) | |
tree | aa4869373d31aa5f1ecf96103d3d79d859b6d901 /mysql-test/r/ndb_update.result | |
parent | 4a4f68937f2a2940cc63b8255d9b23ba1dfd9ddc (diff) | |
download | mariadb-git-f9bae745058e8eeb27c8a55744effb8afc38474b.tar.gz |
bug#21072 Duplicate key error in NDB references wrong key: Return correct key for non-batching inserts
Diffstat (limited to 'mysql-test/r/ndb_update.result')
-rw-r--r-- | mysql-test/r/ndb_update.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/ndb_update.result b/mysql-test/r/ndb_update.result index 7848a47bcef..6bbf3e6a4e1 100644 --- a/mysql-test/r/ndb_update.result +++ b/mysql-test/r/ndb_update.result @@ -26,7 +26,7 @@ pk1 b c 2 2 2 4 1 1 UPDATE t1 set pk1 = 1, c = 2 where pk1 = 4; -ERROR 23000: Duplicate entry '' for key 0 +ERROR 23000: Duplicate entry '2' for key 2 UPDATE IGNORE t1 set pk1 = 1, c = 2 where pk1 = 4; select * from t1 order by pk1; pk1 b c |