diff options
author | svoj@june.mysql.com <> | 2007-09-13 16:42:23 +0500 |
---|---|---|
committer | svoj@june.mysql.com <> | 2007-09-13 16:42:23 +0500 |
commit | 6a04238e41ec0d107709711a25714086f601f69f (patch) | |
tree | 53279ae7dc53ae08ab7efae17cb8edc8f6bcda82 /mysql-test/r/heap_btree.result | |
parent | 6c95ced6c1d62862c7d94aed1452df60c1f707e4 (diff) | |
parent | 84a9e656e00c0aca0e3b5a34bd6a758da7d031d9 (diff) | |
download | mariadb-git-6a04238e41ec0d107709711a25714086f601f69f.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
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); |