diff options
author | ramil@mysql.com <> | 2006-02-09 18:23:37 +0400 |
---|---|---|
committer | ramil@mysql.com <> | 2006-02-09 18:23:37 +0400 |
commit | e1dabf65e4b2abb698eb75ad5eafdb9e99c66d30 (patch) | |
tree | 5b94b99cc99f8467584a5d16d2e6b5b4e449b489 /mysql-test/r/heap.result | |
parent | 110ac55e4b991a97ab886cefdd0961968116cffd (diff) | |
parent | 34abab41db808f587721e3810ce548eb07b99915 (diff) | |
download | mariadb-git-e1dabf65e4b2abb698eb75ad5eafdb9e99c66d30.tar.gz |
Merge mysql.com:/usr/home/ram/work/4.1.heap
into mysql.com:/usr/home/ram/work/mysql-5.0
Diffstat (limited to 'mysql-test/r/heap.result')
-rw-r--r-- | mysql-test/r/heap.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/heap.result b/mysql-test/r/heap.result index 3607a2e3ab5..d72f5771f15 100644 --- a/mysql-test/r/heap.result +++ b/mysql-test/r/heap.result @@ -702,11 +702,11 @@ insert into t1 values ("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd ERROR 23000: Duplicate entry 'abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl' for key 1 drop table t1; CREATE TABLE t1 (a int, key(a)) engine=heap; -insert delayed into t1 values (0); +insert into t1 values (0); delete from t1; select * from t1; a -insert delayed into t1 values (0), (1); +insert into t1 values (0), (1); select * from t1 where a = 0; a 0 |