diff options
author | unknown <svoj@june.mysql.com> | 2007-09-13 16:42:23 +0500 |
---|---|---|
committer | unknown <svoj@june.mysql.com> | 2007-09-13 16:42:23 +0500 |
commit | 104b271b13c52c4ba6f8944c6ba8e35289458bef (patch) | |
tree | 53279ae7dc53ae08ab7efae17cb8edc8f6bcda82 /mysql-test/r/heap_btree.result | |
parent | fff39526bff87ecc744008b6ba348ac1f21df563 (diff) | |
parent | dfc87e8c191ea22c4705b672ba5214bf6933dcb7 (diff) | |
download | mariadb-git-104b271b13c52c4ba6f8944c6ba8e35289458bef.tar.gz |
Merge mysql.com:/home/svoj/devel/mysql/BUG30590/mysql-4.1-engines
into mysql.com:/home/svoj/devel/mysql/BUG30590/mysql-5.0-engines
heap/hp_delete.c:
Auto merged
heap/hp_rfirst.c:
Auto merged
heap/hp_rnext.c:
Auto merged
mysql-test/r/heap_btree.result:
Auto merged
mysql-test/t/heap_btree.test:
Manual merge.
Diffstat (limited to 'mysql-test/r/heap_btree.result')
-rw-r--r-- | mysql-test/r/heap_btree.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/heap_btree.result b/mysql-test/r/heap_btree.result index 91f51a95936..fee47ae4c88 100644 --- a/mysql-test/r/heap_btree.result +++ b/mysql-test/r/heap_btree.result @@ -307,6 +307,13 @@ UNIQUE USING BTREE(c1) ) ENGINE= MEMORY DEFAULT CHARSET= utf8; INSERT INTO t1 VALUES('1'), ('2'); DROP TABLE t1; +CREATE TABLE t1 (a INT, KEY USING BTREE(a)) ENGINE=MEMORY; +INSERT INTO t1 VALUES(1),(2),(2); +DELETE FROM t1 WHERE a=2; +SELECT * FROM t1; +a +1 +DROP TABLE t1; End of 4.1 tests CREATE TABLE t1(val INT, KEY USING BTREE(val)) ENGINE=memory; INSERT INTO t1 VALUES(0); |