summaryrefslogtreecommitdiff
path: root/mysql-test/r/ndb_charset.result
diff options
context:
space:
mode:
authorunknown <mskold@mysql.com>2004-11-18 12:11:56 +0100
committerunknown <mskold@mysql.com>2004-11-18 12:11:56 +0100
commitbe5b6f4d4b29e2393b73f7c9f6a8d17ad7a95422 (patch)
tree8a56eb2e032ba537dc2fe9dd4a5c4fcf424acbe0 /mysql-test/r/ndb_charset.result
parentede217917590d7d04c095fb7e77b57cce72bd25e (diff)
downloadmariadb-git-be5b6f4d4b29e2393b73f7c9f6a8d17ad7a95422.tar.gz
Fix for bug#4312 ndb table, wrong behaviour on insert .. on duplicate key ..
Diffstat (limited to 'mysql-test/r/ndb_charset.result')
-rw-r--r--mysql-test/r/ndb_charset.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/ndb_charset.result b/mysql-test/r/ndb_charset.result
index 93429a1fcb0..501bec99ea3 100644
--- a/mysql-test/r/ndb_charset.result
+++ b/mysql-test/r/ndb_charset.result
@@ -78,9 +78,9 @@ unique key(a)
) engine=ndb;
insert into t1 values(1, 'aAa');
insert into t1 values(2, 'aaa');
-ERROR 23000: Can't write, because of unique constraint, to table 't1'
+ERROR 23000: Duplicate entry '2' for key 1
insert into t1 values(3, 'AAA');
-ERROR 23000: Can't write, because of unique constraint, to table 't1'
+ERROR 23000: Duplicate entry '3' for key 1
select * from t1 order by p;
p a
1 aAa