summaryrefslogtreecommitdiff
path: root/mysql-test/r/ndb_update.result
diff options
context:
space:
mode:
authorunknown <mskold/marty@mysql.com/linux.site>2006-11-29 13:23:19 +0100
committerunknown <mskold/marty@mysql.com/linux.site>2006-11-29 13:23:19 +0100
commita25410c38181ebde59d300e110a417d26a2b356e (patch)
treead6029ef0cf6d4db9b7ee58f2c5999dcd3e1e465 /mysql-test/r/ndb_update.result
parent3d2c0d14f18fce16560492fa1f3aea90ec52fd40 (diff)
downloadmariadb-git-a25410c38181ebde59d300e110a417d26a2b356e.tar.gz
bug#24303 Wrong result for UPDATE IGNORE for NDB table: Read all fields for UPDATE IGNORE with pk
Diffstat (limited to 'mysql-test/r/ndb_update.result')
-rw-r--r--mysql-test/r/ndb_update.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/ndb_update.result b/mysql-test/r/ndb_update.result
index 7603686ea35..1efc41c4ea4 100644
--- a/mysql-test/r/ndb_update.result
+++ b/mysql-test/r/ndb_update.result
@@ -18,7 +18,7 @@ pk1 b c
2 2 2
4 1 1
UPDATE t1 set pk1 = 4 where pk1 = 2;
-ERROR 23000: Duplicate entry '4' for key 1
+ERROR 23000: Duplicate entry '4' for key 'PRIMARY'
UPDATE IGNORE t1 set pk1 = 4 where pk1 = 2;
select * from t1 order by pk1;
pk1 b c