diff options
author | mskold/marty@mysql.com/linux.site <> | 2006-12-07 16:27:38 +0100 |
---|---|---|
committer | mskold/marty@mysql.com/linux.site <> | 2006-12-07 16:27:38 +0100 |
commit | 6b4b4029778d29af9850118911d4b53c81030ec5 (patch) | |
tree | 8125a97b8d229d20e044d747f82a10dc5c60a019 /mysql-test/r/ndb_index_unique.result | |
parent | c39c7b6f2b97730257996e43e3e8c8be6d901501 (diff) | |
download | mariadb-git-6b4b4029778d29af9850118911d4b53c81030ec5.tar.gz |
Bug#24818 CREATE UNIQUE INDEX (...) USING HASH on a NDB table crashes mysqld: Re-generated test result
Diffstat (limited to 'mysql-test/r/ndb_index_unique.result')
-rw-r--r-- | mysql-test/r/ndb_index_unique.result | 2 |
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; |