diff options
author | unknown <svoj@june.mysql.com> | 2007-09-13 17:12:46 +0500 |
---|---|---|
committer | unknown <svoj@june.mysql.com> | 2007-09-13 17:12:46 +0500 |
commit | 8d90ac58fd8ee0fde3d5fec9eebbb03f06d1be9a (patch) | |
tree | 5ea61d125fed03323448e3b241b122355de97b0b /mysql-test/r/heap_btree.result | |
parent | 24e7b25695f8d6a403dca389034aff81348ef399 (diff) | |
parent | 4775828416cd7dc77a2334eab175ecda949666ed (diff) | |
download | mariadb-git-8d90ac58fd8ee0fde3d5fec9eebbb03f06d1be9a.tar.gz |
Merge mysql.com:/home/svoj/devel/mysql/BUG30590/mysql-5.0-engines
into mysql.com:/home/svoj/devel/mysql/BUG30590/mysql-5.1-engines
mysql-test/r/heap_btree.result:
Auto merged
mysql-test/t/heap_btree.test:
Auto merged
storage/heap/hp_delete.c:
Auto merged
storage/heap/hp_rfirst.c:
Auto merged
storage/heap/hp_rnext.c:
Auto merged
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 ab4b892170a..bdf19f130bd 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); |