diff options
author | ingo@mysql.com <> | 2006-01-23 12:17:05 +0100 |
---|---|---|
committer | ingo@mysql.com <> | 2006-01-23 12:17:05 +0100 |
commit | b6e28c99d0c4276bdbcbf19b8e2d99d03bb7af41 (patch) | |
tree | b8e563f22089b8c74c2ba8e68fb041431a9a4829 /mysql-test/r/heap_hash.result | |
parent | 9a6bad5951922d922eebdc0d088e070d8697736a (diff) | |
download | mariadb-git-b6e28c99d0c4276bdbcbf19b8e2d99d03bb7af41.tar.gz |
WL#1563 - Modify MySQL to support fast CREATE/DROP INDEX
Change "duplicate key" message to print key name
instead of key number.
Diffstat (limited to 'mysql-test/r/heap_hash.result')
-rw-r--r-- | mysql-test/r/heap_hash.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/heap_hash.result b/mysql-test/r/heap_hash.result index d8d89b786b5..d97e35bb7c9 100644 --- a/mysql-test/r/heap_hash.result +++ b/mysql-test/r/heap_hash.result @@ -195,7 +195,7 @@ SELECT * FROM t1 WHERE b<=>NULL; a b 99 NULL INSERT INTO t1 VALUES (1,3); -ERROR 23000: Duplicate entry '3' for key 1 +ERROR 23000: Duplicate entry '3' for key 'b' DROP TABLE t1; CREATE TABLE t1 (a int not null, primary key using HASH (a)) engine=heap; INSERT into t1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11); |