diff options
author | unknown <mskold@mysql.com> | 2004-11-18 12:11:56 +0100 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2004-11-18 12:11:56 +0100 |
commit | be5b6f4d4b29e2393b73f7c9f6a8d17ad7a95422 (patch) | |
tree | 8a56eb2e032ba537dc2fe9dd4a5c4fcf424acbe0 /mysql-test/r/ndb_charset.result | |
parent | ede217917590d7d04c095fb7e77b57cce72bd25e (diff) | |
download | mariadb-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.result | 4 |
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 |