summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <mskold/marty@mysql.com/linux.site>2006-12-07 16:27:38 +0100
committerunknown <mskold/marty@mysql.com/linux.site>2006-12-07 16:27:38 +0100
commit6fa526965fc04f077fd45f6427a896eea2ccefe3 (patch)
tree8125a97b8d229d20e044d747f82a10dc5c60a019
parentbdb6065db82c3865b6d527b09281227cc1b06202 (diff)
downloadmariadb-git-6fa526965fc04f077fd45f6427a896eea2ccefe3.tar.gz
Bug#24818 CREATE UNIQUE INDEX (...) USING HASH on a NDB table crashes mysqld: Re-generated test result
-rw-r--r--mysql-test/r/ndb_index_unique.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/ndb_index_unique.result b/mysql-test/r/ndb_index_unique.result
index d83c60e6a8d..cc63ce69760 100644
--- a/mysql-test/r/ndb_index_unique.result
+++ b/mysql-test/r/ndb_index_unique.result
@@ -139,7 +139,7 @@ a b c
8 2 3
create unique index bi using hash on t2(b);
insert into t2 values(9, 3, 1);
-ERROR 23000: Duplicate entry '' for key 0
+ERROR 23000: Duplicate entry '' for key '*UNKNOWN*'
alter table t2 drop index bi;
insert into t2 values(9, 3, 1);
select * from t2 order by a;